-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test: normal watcher * feat: standard fs in most places, node16 * ci: standardized actions * refactor: ensure dst dir exists on windows * feat!: migrate to ESM BREAKING CHANGES: node 18 minimum, ESM exports * chore: update deps * chore: update deps and add configs * chore: all the nice updates * chore: update eslintignore * test: remove helper * fix: use cp * chore: remove fs-extra * test: sf integration * chore: increase timeout * chore: use cross-spawn again * fix: cross-spawn import * test: avoid plugins link * test: use gz * test: use .cmd on windows * test: mixed up scripts * test: maybe it will pass on windows now * test: maybe it will pass on windows now * test: maybe it will pass on windows now * test: maybe it will pass on windows now * chore: clean up * fix(dev-deps): use latest eslint-config-oclif-typescript * chore: code review * chore: remove old badges * chore: update dev scripts --------- Co-authored-by: mshanemc <[email protected]> Co-authored-by: svc-cli-bot <[email protected]>
- Loading branch information
1 parent
a0d1178
commit be87bf6
Showing
34 changed files
with
3,550 additions
and
1,996 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/lib | ||
/examples | ||
/dist |
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,8 @@ | ||
{ | ||
"extends": ["oclif", "oclif-typescript", "prettier"], | ||
"rules": { | ||
"unicorn/prefer-module": "off", | ||
"unicorn/no-array-reduce": "off", | ||
"no-useless-constructor": "off" | ||
} | ||
} |
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,7 @@ | ||
{ | ||
"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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname $0)/_/husky.sh" | ||
|
||
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,14 +1,9 @@ | ||
{ | ||
"recursive": true, | ||
"reporter": "spec", | ||
"require": [ | ||
"test/helpers/init.js", | ||
"ts-node/register", | ||
"source-map-support/register" | ||
], | ||
"require": ["ts-node/register"], | ||
"timeout": 0, | ||
"watch-extensions": [ | ||
"ts" | ||
] | ||
"watch-files": ["test/**/*.ts", "src/**/*.ts"], | ||
"watch-extensions": ["ts"], | ||
"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.