Skip to content

Commit b55ca2b

Browse files
authored
Merge pull request #45 from nodenv/src
Moves lib to src to make homebrew happy
2 parents dc1b89e + 4f10712 commit b55ca2b

11 files changed

+5
-5
lines changed

index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const DefinitionFile = require('./lib/definition-file')
2-
const GithubScraper = require('./lib/scraper-github')
3-
const NodejsOrgScraper = require('./lib/scraper-nodejs_org')
1+
const DefinitionFile = require('./src/definition-file')
2+
const GithubScraper = require('./src/scraper-github')
3+
const NodejsOrgScraper = require('./src/scraper-nodejs_org')
44

55
const scrapers = {
66
nodejs: new NodejsOrgScraper({

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
},
1515
"directories": {
1616
"bin": "bin",
17-
"lib": "lib",
17+
"lib": "src",
1818
"test": "test"
1919
},
2020
"main": "index.js",
2121
"files": [
2222
"bin",
23-
"lib",
23+
"src",
2424
"script",
2525
"share"
2626
],
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/fetch.js src/fetch.js

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

lib/scraper.js src/scraper.js

File renamed without changes.

0 commit comments

Comments
 (0)