-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: sfify * chore: noop the docs * chore: bump prettier (to close other pr) * test: better NUT error output * test: nuts on multiple branches can't run in parallel * test: use parameterized nut secrets * chore: more parameterized secrets * chore: bump lots of deps * test: assert hub org username * test: change to runner that can talk to org * chore: bump more deps * test: use gha main * refactor: typed return
- Loading branch information
Showing
38 changed files
with
4,013 additions
and
3,574 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
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,9 @@ | ||
{ | ||
"wireit": { | ||
"test:command-reference": { | ||
"command": "echo \"We don't do docs for this command\"", | ||
"files": ["src/**/*.ts", "messages/**"], | ||
"output": ["tmp/root"] | ||
} | ||
} | ||
} |
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,21 @@ | ||
#!/usr/bin/env node | ||
|
||
const oclif = require('@oclif/core'); | ||
|
||
const path = require('path'); | ||
const project = path.join(__dirname, '..', 'tsconfig.json'); | ||
|
||
// In dev mode -> use ts-node and dev plugins | ||
process.env.NODE_ENV = 'development'; | ||
|
||
// Enable SWC for faster typescript compiling | ||
require('ts-node').register({ project, swc: true }); | ||
|
||
// In dev mode, always show stack traces | ||
const g = (global.oclif = global.oclif || {}); | ||
|
||
// In dev mode, always show stack traces | ||
global.oclif.debug = true; | ||
|
||
// Start the CLI | ||
oclif.run().then(require('@oclif/core/flush')).catch(require('@oclif/core/handle')); |
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 @@ | ||
@echo off | ||
|
||
node "%~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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
require('@oclif/command').run() | ||
.catch(require('@oclif/errors/handle')) | ||
require('@oclif/core').run().then(require('@oclif/core/flush')).catch(require('@oclif/core/handle')); |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# check.description | ||
|
||
check the status of a change case record | ||
|
||
# create.description | ||
|
||
create a change case record based on a template ID with one implementation step | ||
|
||
# create.flags.templateid.description | ||
|
||
change case template id | ||
|
||
# create.flags.release.description | ||
|
||
schedule build of the new release | ||
|
||
# create.flags.location.description | ||
|
||
url of the source control location | ||
|
||
# create.flags.configurationitem.description | ||
|
||
Full path from the configuration item, ex: Salesforce.SF_Off_Core.DeveloperTools.NPM | ||
|
||
# close.description | ||
|
||
stops the implementation steps, and closes the change case record | ||
|
||
# command.flags.changecaseid.description | ||
|
||
change case id | ||
|
||
# command.flags.dryrun.description | ||
|
||
run the command without making any API calls - all calls will be 'successful' | ||
|
||
# close.flags.status.summary | ||
|
||
What the status of the implementation steps should be set to | ||
|
||
# NoOrgError | ||
|
||
The command needs either a target org specified via flag or an environment variable: %s |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.