generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 18
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 * chore: building * test: fix UTs * chore: merge main, resolve conflicts * test: replace __filename * test: fixing NUTs, not running * chore: bump testkit, use 'dev' cli * test: fix deb NUTs * test: set bin to sfdx for SourceTestkit to get correct deploy * chore: try ts-node --esm * chore: try node --loader ts-node/esm * test: fix --source-dir for force:source:deploy * chore: merge main, resolve conflicts * chore: fix archiver import * chore: fix __filename * chore: actually fix archiver import * chore: fix DEB NUTs * chore: try new yarn.lock, all NUTs passed locally * chore: remove lintstagedrc * chore: updates * test: copy type from PDR * test: remote initProgressBar spy * test(nuts): use sf for testkit.convert * chore: remove unused devDeps * test(nuts): use sf for manifest creation * test(nuts): use sf * test(nuts): fix nuts --------- Co-authored-by: Cristian Dominguez <[email protected]>
- Loading branch information
1 parent
6e3c762
commit fc3403e
Showing
113 changed files
with
2,770 additions
and
2,497 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 @@ | ||
*.cjs/ |
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 |
---|---|---|
|
@@ -45,3 +45,5 @@ node_modules | |
|
||
# ignore generated nut tests | ||
test/nuts/generated/ | ||
|
||
oclif.lock |
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,8 +1,16 @@ | ||
{ | ||
"require": "ts-node/register,source-map-support/register", | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"watch-extensions": "ts", | ||
"watch-files": ["src", "test"], | ||
"watch-files": [ | ||
"src", | ||
"test" | ||
], | ||
"recursive": true, | ||
"reporter": "spec", | ||
"timeout": 10000 | ||
} | ||
"timeout": 10000, | ||
"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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@@ -0,0 +1,3 @@ | ||
@echo off | ||
|
||
node "%~dp0\dev" %* | ||
node --loader ts-node/esm --no-warnings=ExperimentalWarning "%~dp0\dev" %* |
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 @@ | ||
#!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning | ||
// eslint-disable-next-line node/shebang | ||
async function main() { | ||
const {execute} = await import('@oclif/core') | ||
await execute({development: true, dir: import.meta.url}) | ||
} | ||
|
||
await main() |
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,9 @@ | ||
#!/usr/bin/env node | ||
|
||
// eslint-disable-next-line node/shebang | ||
async function main() { | ||
const {execute} = await import('@oclif/core') | ||
await execute({dir: import.meta.url}) | ||
} | ||
|
||
await main() |
File renamed without changes.
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
Oops, something went wrong.