-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
e8bdb79
commit 68f7c64
Showing
56 changed files
with
912 additions
and
662 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
/node_modules | ||
oclif.manifest.json | ||
|
||
|
||
tsconfig.tsbuildinfo | ||
|
||
yarn.lock | ||
pnpm-lock.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged | ||
|
||
npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
{ | ||
"version": "0.2.0", | ||
"version": "1.0.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Attach", | ||
"port": 9229, | ||
"skipFiles": ["<node_internals>/**"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Execute Command", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}/bin/dev", | ||
"args": ["hello", "world"] | ||
"name": "Mocha: current file", | ||
"env": { | ||
"TS_NODE_TRANSPILE_ONLY": "true", | ||
"TS_NODE_FILES": "true" | ||
}, | ||
"program": "${workspaceFolder}/node_modules/.bin/mocha", | ||
"args": ["${file}", "--config=.mocharc.json"], | ||
"console": "integratedTerminal", | ||
// "disableOptimisticBPs": true, | ||
"windows": { | ||
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha" | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.