-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat!: migrate to ESM BREAKING CHANGES: ESM and node 18 minimum * fix: tests * test: integration and unit tests * test: link tests * chore: valid test workflow * feat: compile github-installed plugins * chore: remove unused dep * feat: add env var for yarn --network-timeout * feat: add --silent flag to install * feat: configurable pluginPrefix * test: clean up * chore: code review * fix: throw preemptive error if npm pkg does not exist * feat: improved terminal output * chore: update fs and path imports * ci: update test.yml * chore: bump oclif/core * ci: use node latest for integration tests * fix: file exists check * fix: remove rogue console.log * ci: test perf * ci: test perf * ci: test perf * sm/pr-feedback (#685) * refactor: hasPlugin type uses this.list types * refactor: omit class props, parallelization from TODO * refactor: warningCache use set * chore: dev-dep cleanup --------- Co-authored-by: svc-cli-bot <[email protected]> * fix: ignore yarn path resolution * chore: clean up * fix: prevent circular json * fix: resolve yarn from plugin and config.root * fix: dont cache yarn bin on class * fix: check config root for yarn * chore: bump oclif/core * fix: improve install warnings * test: --no-install on link * test: use lts --------- Co-authored-by: Shane McLaughlin <[email protected]> Co-authored-by: svc-cli-bot <[email protected]>
- Loading branch information
1 parent
5ba86b5
commit 66e3d4f
Showing
48 changed files
with
4,157 additions
and
4,292 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["@commitlint/config-conventional"] | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["oclif", "oclif-typescript", "prettier"] | ||
} |
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,7 +1,10 @@ | ||
{ | ||
"productTag": "a1aB0000000ce2IIAQ", | ||
"defaultBuild": "offcore.tooling.55", | ||
"issueTypeLabels": { "enhancement": "USER STORY", "bug": "BUG P3" }, | ||
"defaultBuild": "offcore.tooling.59", | ||
"issueTypeLabels": { | ||
"enhancement": "USER STORY", | ||
"bug": "BUG P3" | ||
}, | ||
"hideWorkItemUrl": true, | ||
"statusWhenClosed": "CLOSED" | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
/lib | ||
/node_modules | ||
/tmp | ||
|
||
oclif.lock | ||
oclif.manifest.json |
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,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname $0)/_/husky.sh" | ||
|
||
yarn run commitlint --edit $1 | ||
yarn commitlint --edit $1 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint-staged --concurrent false |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"*.json": ["prettier --write"], | ||
"*.md": ["prettier --write"], | ||
"+(src|test)/**/*.+(ts|js)": ["eslint --fix", "prettier --write"] | ||
} |
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,13 +1,8 @@ | ||
{ | ||
"require": [ | ||
"test/helpers/init.js", | ||
"ts-node/register", | ||
"source-map-support/register" | ||
], | ||
"watch-extensions": [ | ||
"ts" | ||
], | ||
"require": ["ts-node/register"], | ||
"watch-extensions": ["ts"], | ||
"recursive": true, | ||
"reporter": "spec", | ||
"timeout": 200000 | ||
} | ||
"timeout": 200000, | ||
"node-option": ["loader=ts-node/esm"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
"@oclif/prettier-config" |
Oops, something went wrong.