@salesforce/plugin-release-management 4.4.24 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -65
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +6 -0
- package/bin/run.cmd +1 -1
- package/bin/run.js +7 -0
- package/lib/commands/channel/promote.d.ts +8 -8
- package/lib/commands/cli/artifacts/compare.d.ts +3 -3
- package/lib/commands/cli/install/jit/test.d.ts +1 -1
- package/lib/commands/cli/install/test.d.ts +4 -4
- package/lib/commands/cli/release/automerge.d.ts +3 -3
- package/lib/commands/cli/release/build.d.ts +6 -6
- package/lib/commands/cli/releasenotes.d.ts +2 -2
- package/lib/commands/cli/tarballs/verify.d.ts +2 -2
- package/lib/commands/cli/versions/inspect.d.ts +4 -4
- package/lib/commands/dependabot/automerge.d.ts +4 -4
- package/lib/commands/github/check/closed.d.ts +2 -2
- package/lib/commands/npm/dependencies/pin.d.ts +1 -1
- package/lib/commands/npm/package/release.d.ts +4 -4
- package/lib/dependabot.d.ts +1 -1
- package/npm-shrinkwrap.json +393 -385
- package/oclif.manifest.json +706 -455
- package/package.json +10 -12
- package/bin/dev +0 -21
- package/bin/run +0 -3
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-release-management",
|
|
3
3
|
"description": "A plugin for preparing and publishing npm packages",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.5.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"bin": {
|
|
8
|
-
"sf-release": "bin/run"
|
|
8
|
+
"sf-release": "bin/run.js"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@oclif/core": "^
|
|
11
|
+
"@oclif/core": "^3",
|
|
12
12
|
"@octokit/core": "^4.2.4",
|
|
13
13
|
"@octokit/plugin-paginate-rest": "^6.1.2",
|
|
14
14
|
"@octokit/plugin-throttling": "^5.2.3",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@salesforce/kit": "^3.0.15",
|
|
18
18
|
"@salesforce/plugin-command-reference": "^3.0.46",
|
|
19
19
|
"@salesforce/plugin-trust": "^2.6.23",
|
|
20
|
-
"@salesforce/sf-plugins-core": "^
|
|
20
|
+
"@salesforce/sf-plugins-core": "^4",
|
|
21
21
|
"@salesforce/ts-types": "^2.0.9",
|
|
22
22
|
"aws-sdk": "^2.1499.0",
|
|
23
23
|
"chalk": "^4.1.0",
|
|
@@ -35,13 +35,12 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@oclif/plugin-command-snapshot": "^4.0.16",
|
|
37
37
|
"@salesforce/dev-scripts": "^6.0.3",
|
|
38
|
-
"@salesforce/ts-sinon": "1.4.
|
|
39
|
-
"@swc/core": "1.3.39",
|
|
38
|
+
"@salesforce/ts-sinon": "1.4.19",
|
|
40
39
|
"@types/semver": "^7.5.4",
|
|
41
|
-
"@types/shelljs": "^0.8.
|
|
40
|
+
"@types/shelljs": "^0.8.15",
|
|
42
41
|
"aws-sdk-mock": "^5.8.0",
|
|
43
42
|
"eslint-plugin-sf-plugin": "^1.16.14",
|
|
44
|
-
"oclif": "^
|
|
43
|
+
"oclif": "^4",
|
|
45
44
|
"shx": "0.3.4",
|
|
46
45
|
"ts-node": "^10.9.1",
|
|
47
46
|
"typescript": "^5.2.2"
|
|
@@ -74,7 +73,6 @@
|
|
|
74
73
|
"@salesforce/plugin-trust"
|
|
75
74
|
],
|
|
76
75
|
"devPlugins": [
|
|
77
|
-
"@oclif/plugin-help",
|
|
78
76
|
"@oclif/plugin-command-snapshot",
|
|
79
77
|
"@salesforce/plugin-command-reference"
|
|
80
78
|
],
|
|
@@ -235,7 +233,7 @@
|
|
|
235
233
|
"output": []
|
|
236
234
|
},
|
|
237
235
|
"test:command-reference": {
|
|
238
|
-
"command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
|
|
236
|
+
"command": "ts-node \"./bin/dev.js\" commandreference:generate --erroronwarnings",
|
|
239
237
|
"files": [
|
|
240
238
|
"src/**/*.ts",
|
|
241
239
|
"messages/**",
|
|
@@ -246,7 +244,7 @@
|
|
|
246
244
|
]
|
|
247
245
|
},
|
|
248
246
|
"test:deprecation-policy": {
|
|
249
|
-
"command": "\"./bin/dev\" snapshot:compare",
|
|
247
|
+
"command": "ts-node \"./bin/dev.js\" snapshot:compare",
|
|
250
248
|
"files": [
|
|
251
249
|
"src/**/*.ts"
|
|
252
250
|
],
|
|
@@ -256,7 +254,7 @@
|
|
|
256
254
|
]
|
|
257
255
|
},
|
|
258
256
|
"test:json-schema": {
|
|
259
|
-
"command": "\"./bin/dev\" schema:compare",
|
|
257
|
+
"command": "ts-node \"./bin/dev.js\" schema:compare",
|
|
260
258
|
"files": [
|
|
261
259
|
"src/**/*.ts",
|
|
262
260
|
"schemas"
|
package/bin/dev
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
const oclif = require('@oclif/core');
|
|
4
|
-
|
|
5
|
-
const path = require('path');
|
|
6
|
-
const project = path.join(__dirname, '..', 'tsconfig.json');
|
|
7
|
-
|
|
8
|
-
// In dev mode -> use ts-node and dev plugins
|
|
9
|
-
process.env.NODE_ENV = 'development';
|
|
10
|
-
|
|
11
|
-
// Enable SWC for faster typescript compiling
|
|
12
|
-
require('ts-node').register({ project, swc: true });
|
|
13
|
-
|
|
14
|
-
// In dev mode, always show stack traces
|
|
15
|
-
const g = (global.oclif = global.oclif || {});
|
|
16
|
-
|
|
17
|
-
// In dev mode, always show stack traces
|
|
18
|
-
global.oclif.debug = true;
|
|
19
|
-
|
|
20
|
-
// Start the CLI
|
|
21
|
-
oclif.run().then(require('@oclif/core/flush')).catch(require('@oclif/core/handle'));
|
package/bin/run
DELETED