Skip to content

Commit

Permalink
#25: Move src to cli
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Sep 21, 2021
1 parent 25987b6 commit b293155
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
},
"files": [
"/bin",
"/cli",
"/lib",
"/npm-shrinkwrap.json",
"/scripts",
Expand All @@ -46,22 +47,22 @@
"oclif"
],
"license": "GPL-3.0",
"main": "src/index.js",
"main": "lib/index.js",
"oclif": {
"bin": "hyperdrive",
"commands": "./src/commands",
"commands": "./cli/commands",
"hooks": {
"init": [
"./src/hooks/init.js"
"./cli/hooks/init.js"
],
"prerun": [
"./src/hooks/prerun.js"
"./cli/hooks/prerun.js"
],
"postrun": [
"./src/hooks/postrun.js"
"./cli/hooks/postrun.js"
],
"command_not_found": [
"./src/hooks/cnt.js"
"./cli/hooks/cnt.js"
]
},
"plugins": [
Expand All @@ -72,7 +73,8 @@
"outputPath": "dist",
"scripts": [
"bin/*.js",
"src/**/*.js"
"lib/*.js",
"cli/**/*.js"
],
"assets": [
"package.json",
Expand Down

0 comments on commit b293155

Please sign in to comment.