@salesforce/plugin-release-management 4.1.17 → 4.1.18-qa.0
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.
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
const promises_1 = require("node:fs/promises");
|
|
9
10
|
const fg = require("fast-glob");
|
|
10
11
|
const shelljs_1 = require("shelljs");
|
|
11
12
|
const sf_plugins_core_1 = require("@salesforce/sf-plugins-core");
|
|
@@ -24,27 +25,41 @@ class Prepare extends sf_plugins_core_1.SfCommand {
|
|
|
24
25
|
const baseDirGlob = `${workingDir}/node_modules`;
|
|
25
26
|
// Remove JSforceTestSuite from dist
|
|
26
27
|
const jsForceTestSuite = await find(`${baseDirGlob}/JSforceTestSuite`, { onlyDirectories: true });
|
|
27
|
-
this.remove(jsForceTestSuite, 'JSforceTestSuite files');
|
|
28
|
+
await this.remove(jsForceTestSuite, 'JSforceTestSuite files');
|
|
29
|
+
await this.remove(await find(`${baseDirGlob}/jsforce/src`), 'jsforce src');
|
|
30
|
+
await this.remove(await find(`${baseDirGlob}/jsforce/browser`), 'jsforce browser');
|
|
31
|
+
// salesforce plugin schemas
|
|
32
|
+
await this.remove(await find(`${baseDirGlob}/@salesforce/plugin-*/schemas`), 'plugin schema files');
|
|
33
|
+
// isogit cleanup
|
|
34
|
+
await this.remove(await find(`${baseDirGlob}/**/.size_report.html`), 'isogit size results');
|
|
35
|
+
// minified js
|
|
36
|
+
await this.remove(await find(`${baseDirGlob}/**/*.min.js`), 'minified js');
|
|
37
|
+
await this.remove(await find(`${baseDirGlob}/rxjs/src`), 'rxjs src');
|
|
38
|
+
await this.remove(await find(`${baseDirGlob}/**/ajv/lib`), 'ajv lib');
|
|
39
|
+
await this.remove(await find(`${baseDirGlob}/**/jszip/lib`), 'jszip lib');
|
|
28
40
|
// Module readmes and other markdown docs not found in template directories
|
|
29
|
-
const markdownFiles = await find(`${baseDirGlob}
|
|
41
|
+
const markdownFiles = await find(`${baseDirGlob}/**/*.+(md|markdown)`, {
|
|
30
42
|
excludeDirectories: ['templates', 'messages'],
|
|
31
43
|
});
|
|
32
|
-
this.remove(markdownFiles, '.md files');
|
|
44
|
+
await this.remove(markdownFiles, '.md files');
|
|
33
45
|
// Module .gitignore not found in template directories
|
|
34
46
|
const gitignore = await find(`${baseDirGlob}/**/.gitignore`, { excludeDirectories: ['templates'] });
|
|
35
|
-
this.remove(gitignore, '.gitignore files');
|
|
47
|
+
await this.remove(gitignore, '.gitignore files');
|
|
36
48
|
// Module .gitattributes not found in template directories
|
|
37
49
|
const gitattributes = await find(`${baseDirGlob}/**/.gitattributes`, { excludeDirectories: ['templates'] });
|
|
38
|
-
this.remove(gitattributes, '.gitattributes files');
|
|
50
|
+
await this.remove(gitattributes, '.gitattributes files');
|
|
39
51
|
// Module .eslintrc not found in template directories
|
|
40
52
|
const eslintrc = await find(`${baseDirGlob}/**/.eslintrc`, { excludeDirectories: ['templates'] });
|
|
41
|
-
this.remove(eslintrc, '.eslintrc files');
|
|
53
|
+
await this.remove(eslintrc, '.eslintrc files');
|
|
42
54
|
// Module appveyor.yml not found in template directories
|
|
43
55
|
const appveyor = await find(`${baseDirGlob}/**/appveyor.yml`, { excludeDirectories: ['templates'] });
|
|
44
|
-
this.remove(appveyor, 'appveyor.yml files');
|
|
56
|
+
await this.remove(appveyor, 'appveyor.yml files');
|
|
45
57
|
// Module circle.yml not found in template directories
|
|
46
58
|
const circle = await find(`${baseDirGlob}/**/circle.yml`, { excludeDirectories: ['templates'] });
|
|
47
|
-
this.remove(circle, 'circle.yml files');
|
|
59
|
+
await this.remove(circle, 'circle.yml files');
|
|
60
|
+
// svg graphs
|
|
61
|
+
const graphs = await find(`${baseDirGlob}/**/graph.svg`);
|
|
62
|
+
await this.remove(graphs, 'svg graphs');
|
|
48
63
|
// Module test dirs, except in salesforce-alm, which includes production source code in such a dir
|
|
49
64
|
const allowedTestDirs = [
|
|
50
65
|
'command',
|
|
@@ -56,27 +71,27 @@ class Prepare extends sf_plugins_core_1.SfCommand {
|
|
|
56
71
|
'@salesforce/plugin-generator',
|
|
57
72
|
];
|
|
58
73
|
const testDirs = (await find(`${baseDirGlob}/**/test`, { onlyDirectories: true })).filter((f) => !allowedTestDirs.some((d) => f.includes(d)));
|
|
59
|
-
this.remove(testDirs, 'test directories');
|
|
74
|
+
await this.remove(testDirs, 'test directories');
|
|
60
75
|
// JS map files, except the ill-named `lodash.map` (it's a directory and we'll also filter out matches if found for good measure)
|
|
61
76
|
const maps = (await find(`${baseDirGlob}/**/*.map`)).filter((f) => !f.includes('lodash.map'));
|
|
62
|
-
this.remove(maps, '*.map files');
|
|
77
|
+
await this.remove(maps, '*.map files');
|
|
63
78
|
// In case yarn autoclean is disabled, delete some known windows file path length offenders
|
|
64
79
|
const nycOutput = await find(`${baseDirGlob}/**/.nyc_output`);
|
|
65
|
-
this.remove(nycOutput, '.nyc_output files');
|
|
80
|
+
await this.remove(nycOutput, '.nyc_output files');
|
|
66
81
|
// Large files shipped with jsforce
|
|
67
82
|
const jsforceBuild = await find(`${baseDirGlob}/jsforce/build`, { onlyDirectories: true });
|
|
68
|
-
this.remove(jsforceBuild, 'jsforce/build directory');
|
|
83
|
+
await this.remove(jsforceBuild, 'jsforce/build directory');
|
|
69
84
|
// This breaks compilation. We need to probably do this right before the pack, but then this will
|
|
70
85
|
// break compilation the next time compile is ran without doing a yarn install --force
|
|
71
86
|
// We don't need types in the production code
|
|
72
87
|
if (this.flags.types) {
|
|
73
88
|
const types = await find(`${baseDirGlob}/**/*.d.ts`);
|
|
74
|
-
this.remove(types, '*.d.ts files');
|
|
89
|
+
await this.remove(types, '*.d.ts files');
|
|
75
90
|
}
|
|
76
91
|
}
|
|
77
|
-
remove(files, type) {
|
|
92
|
+
async remove(files, type) {
|
|
78
93
|
if (!files.length)
|
|
79
|
-
return;
|
|
94
|
+
return [];
|
|
80
95
|
const msg = this.flags.dryrun
|
|
81
96
|
? `${chalk_1.red.bold('[DRYRUN] Removing:')} ${files.length} ${type}`
|
|
82
97
|
: `${chalk_1.red.bold('Removing:')} ${files.length} ${type}`;
|
|
@@ -84,9 +99,7 @@ class Prepare extends sf_plugins_core_1.SfCommand {
|
|
|
84
99
|
if (this.flags.verbose) {
|
|
85
100
|
files.forEach((f) => this.log(` ${f}`));
|
|
86
101
|
}
|
|
87
|
-
|
|
88
|
-
files.forEach((f) => (0, shelljs_1.rm)('-rf', f));
|
|
89
|
-
}
|
|
102
|
+
return Promise.all(files.map((f) => (this.flags.dryrun ? undefined : (0, promises_1.rm)(f, { recursive: true, force: true }))));
|
|
90
103
|
}
|
|
91
104
|
}
|
|
92
105
|
Prepare.summary = messages.getMessage('description');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prepare.js","sourceRoot":"","sources":["../../../../src/commands/cli/tarballs/prepare.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;AAEH,gCAAgC;AAChC,
|
|
1
|
+
{"version":3,"file":"prepare.js","sourceRoot":"","sources":["../../../../src/commands/cli/tarballs/prepare.ts"],"names":[],"mappings":"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"}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-release-management",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.18-qa.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-release-management",
|
|
9
|
-
"version": "4.1.
|
|
9
|
+
"version": "4.1.18-qa.0",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^2.8.10",
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,290 +1,286 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"name": "@salesforce/plugin-release-management",
|
|
3
|
+
"description": "A plugin for preparing and publishing npm packages",
|
|
4
|
+
"version": "4.1.18-qa.0",
|
|
5
|
+
"author": "Salesforce",
|
|
6
|
+
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
|
+
"bin": {
|
|
8
|
+
"sf-release": "bin/run"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@oclif/core": "^2.8.10",
|
|
12
|
+
"@octokit/core": "^4.2.4",
|
|
13
|
+
"@octokit/plugin-paginate-rest": "^6.1.2",
|
|
14
|
+
"@octokit/plugin-throttling": "^5.2.3",
|
|
15
|
+
"@salesforce/cli-plugins-testkit": "^4.2.7",
|
|
16
|
+
"@salesforce/core": "^4.3.11",
|
|
17
|
+
"@salesforce/kit": "^3.0.3",
|
|
18
|
+
"@salesforce/plugin-command-reference": "^3.0.10",
|
|
19
|
+
"@salesforce/plugin-trust": "^2.4.2",
|
|
20
|
+
"@salesforce/sf-plugins-core": "^3.1.12",
|
|
21
|
+
"@salesforce/ts-types": "^2.0.5",
|
|
22
|
+
"aws-sdk": "^2.1413.0",
|
|
23
|
+
"chalk": "^4.1.0",
|
|
24
|
+
"fast-glob": "^3.3.0",
|
|
25
|
+
"got": "^11.8.6",
|
|
26
|
+
"just-diff": "^5.2.0",
|
|
27
|
+
"proxy-agent": "^6.3.0",
|
|
28
|
+
"semver": "^7.5.2",
|
|
29
|
+
"shelljs": "^0.8.4",
|
|
30
|
+
"standard-version": "^9.0.0",
|
|
31
|
+
"tslib": "^2",
|
|
32
|
+
"yarn-deduplicate": "^3.1.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@oclif/plugin-command-snapshot": "^4.0.5",
|
|
36
|
+
"@salesforce/dev-config": "^4.0.1",
|
|
37
|
+
"@salesforce/dev-scripts": "^5.4.3",
|
|
38
|
+
"@salesforce/prettier-config": "^0.0.3",
|
|
39
|
+
"@salesforce/ts-sinon": "1.4.8",
|
|
40
|
+
"@swc/core": "1.3.39",
|
|
41
|
+
"@types/semver": "^7.5.0",
|
|
42
|
+
"@types/shelljs": "^0.8.8",
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
44
|
+
"@typescript-eslint/parser": "^5.60.1",
|
|
45
|
+
"aws-sdk-mock": "^5.8.0",
|
|
46
|
+
"chai": "^4.3.7",
|
|
47
|
+
"eslint": "^8.43.0",
|
|
48
|
+
"eslint-config-prettier": "^8.8.0",
|
|
49
|
+
"eslint-config-salesforce": "^2.0.1",
|
|
50
|
+
"eslint-config-salesforce-license": "^0.2.0",
|
|
51
|
+
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
52
|
+
"eslint-plugin-header": "^3.1.1",
|
|
53
|
+
"eslint-plugin-import": "2.28.0",
|
|
54
|
+
"eslint-plugin-jsdoc": "^44.2.4",
|
|
55
|
+
"eslint-plugin-sf-plugin": "^1.15.13",
|
|
56
|
+
"husky": "^7.0.4",
|
|
57
|
+
"mocha": "^9.1.3",
|
|
58
|
+
"nyc": "^15.1.0",
|
|
59
|
+
"oclif": "^3.9.1",
|
|
60
|
+
"prettier": "^2.8.8",
|
|
61
|
+
"pretty-quick": "^3.1.0",
|
|
62
|
+
"shx": "0.3.4",
|
|
63
|
+
"sinon": "10.0.0",
|
|
64
|
+
"ts-node": "^10.0.0",
|
|
65
|
+
"typescript": "^5.1.6",
|
|
66
|
+
"wireit": "^0.10.0"
|
|
67
|
+
},
|
|
68
|
+
"config": {},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=16.0.0"
|
|
71
|
+
},
|
|
72
|
+
"files": [
|
|
73
|
+
"bin",
|
|
74
|
+
"oclif.manifest.json",
|
|
75
|
+
"/lib",
|
|
76
|
+
"/messages",
|
|
77
|
+
"/npm-shrinkwrap.json"
|
|
78
|
+
],
|
|
79
|
+
"homepage": "https://github.com/salesforcecli/plugin-release-management",
|
|
80
|
+
"keywords": [
|
|
81
|
+
"force",
|
|
82
|
+
"salesforce",
|
|
83
|
+
"sfdx",
|
|
84
|
+
"salesforcedx",
|
|
85
|
+
"sfdx-plugin"
|
|
86
|
+
],
|
|
87
|
+
"license": "BSD-3-Clause",
|
|
88
|
+
"oclif": {
|
|
89
|
+
"commands": "./lib/commands",
|
|
90
|
+
"node": "14.15.4",
|
|
91
|
+
"bin": "sfdx",
|
|
92
|
+
"plugins": [
|
|
93
|
+
"@salesforce/plugin-trust"
|
|
94
|
+
],
|
|
95
|
+
"devPlugins": [
|
|
96
|
+
"@oclif/plugin-help",
|
|
97
|
+
"@oclif/plugin-command-snapshot",
|
|
98
|
+
"@salesforce/plugin-command-reference"
|
|
99
|
+
],
|
|
100
|
+
"topics": {
|
|
101
|
+
"cli": {
|
|
102
|
+
"description": "get information on the cli",
|
|
103
|
+
"subtopics": {
|
|
104
|
+
"versions": {
|
|
105
|
+
"description": "interact with CLI versions"
|
|
106
|
+
},
|
|
107
|
+
"tarballs": {
|
|
108
|
+
"description": "interact with CLI tarballs"
|
|
109
|
+
},
|
|
110
|
+
"install": {
|
|
111
|
+
"description": "utilities for CLI installation"
|
|
112
|
+
},
|
|
113
|
+
"release": {
|
|
114
|
+
"description": "utilities for building CLI releases"
|
|
115
|
+
},
|
|
116
|
+
"schemas": {
|
|
117
|
+
"description": "utilities for comparing command schemas"
|
|
118
|
+
},
|
|
119
|
+
"artifacts": {
|
|
120
|
+
"description": "utilities for comparing plugin artifacts"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"channel": {
|
|
125
|
+
"description": "interact with aws channels for clis"
|
|
126
|
+
},
|
|
127
|
+
"dependabot": {
|
|
128
|
+
"description": "interact with dependabot PRs"
|
|
129
|
+
},
|
|
130
|
+
"github": {
|
|
131
|
+
"subtopics": {
|
|
132
|
+
"check": {
|
|
133
|
+
"description": "check github status"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"description": "interact with github issues"
|
|
137
|
+
},
|
|
138
|
+
"npm": {
|
|
139
|
+
"description": "release npm packages",
|
|
140
|
+
"subtopics": {
|
|
141
|
+
"dependencies": {
|
|
142
|
+
"description": "pin dependencies to a specific version in package.json"
|
|
143
|
+
},
|
|
144
|
+
"package": {
|
|
145
|
+
"description": "work with npm projects"
|
|
146
|
+
},
|
|
147
|
+
"release": {
|
|
148
|
+
"description": "validate npm releases"
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"repositories": {
|
|
153
|
+
"description": "list and get information about SalesforceCLI-owned repositories"
|
|
154
|
+
},
|
|
155
|
+
"typescript": {
|
|
156
|
+
"description": "test updates to typescript version"
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"repository": "salesforcecli/plugin-release-management",
|
|
161
|
+
"scripts": {
|
|
162
|
+
"build": "wireit",
|
|
163
|
+
"clean": "sf-clean",
|
|
164
|
+
"clean-all": "sf-clean all",
|
|
165
|
+
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
|
|
166
|
+
"compile": "wireit",
|
|
167
|
+
"docs": "sf-docs",
|
|
168
|
+
"format": "wireit",
|
|
169
|
+
"lint": "wireit",
|
|
170
|
+
"postpack": "shx rm -f oclif.manifest.json npm-shrinkwrap.json",
|
|
171
|
+
"prepack": "sf-prepack && npm shrinkwrap",
|
|
172
|
+
"prepare": "sf-install",
|
|
173
|
+
"test": "wireit",
|
|
174
|
+
"test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
175
|
+
"test:only": "wireit",
|
|
176
|
+
"version": "oclif readme"
|
|
177
|
+
},
|
|
178
|
+
"publishConfig": {
|
|
179
|
+
"access": "public"
|
|
180
|
+
},
|
|
181
|
+
"wireit": {
|
|
182
|
+
"build": {
|
|
183
|
+
"dependencies": [
|
|
184
|
+
"compile",
|
|
185
|
+
"lint"
|
|
186
|
+
]
|
|
9
187
|
},
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"aws-sdk": "^2.1413.0",
|
|
23
|
-
"chalk": "^4.1.0",
|
|
24
|
-
"fast-glob": "^3.3.0",
|
|
25
|
-
"got": "^11.8.6",
|
|
26
|
-
"just-diff": "^5.2.0",
|
|
27
|
-
"proxy-agent": "^6.3.0",
|
|
28
|
-
"semver": "^7.5.2",
|
|
29
|
-
"shelljs": "^0.8.4",
|
|
30
|
-
"standard-version": "^9.0.0",
|
|
31
|
-
"tslib": "^2",
|
|
32
|
-
"yarn-deduplicate": "^3.1.0"
|
|
188
|
+
"compile": {
|
|
189
|
+
"command": "tsc -p . --pretty --incremental",
|
|
190
|
+
"files": [
|
|
191
|
+
"src/**/*.ts",
|
|
192
|
+
"**/tsconfig.json",
|
|
193
|
+
"messages/**"
|
|
194
|
+
],
|
|
195
|
+
"output": [
|
|
196
|
+
"lib/**",
|
|
197
|
+
"*.tsbuildinfo"
|
|
198
|
+
],
|
|
199
|
+
"clean": "if-file-deleted"
|
|
33
200
|
},
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"@typescript-eslint/parser": "^5.60.1",
|
|
45
|
-
"aws-sdk-mock": "^5.8.0",
|
|
46
|
-
"chai": "^4.3.7",
|
|
47
|
-
"eslint": "^8.43.0",
|
|
48
|
-
"eslint-config-prettier": "^8.8.0",
|
|
49
|
-
"eslint-config-salesforce": "^2.0.1",
|
|
50
|
-
"eslint-config-salesforce-license": "^0.2.0",
|
|
51
|
-
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
52
|
-
"eslint-plugin-header": "^3.1.1",
|
|
53
|
-
"eslint-plugin-import": "2.28.0",
|
|
54
|
-
"eslint-plugin-jsdoc": "^44.2.4",
|
|
55
|
-
"eslint-plugin-sf-plugin": "^1.15.13",
|
|
56
|
-
"husky": "^7.0.4",
|
|
57
|
-
"mocha": "^9.1.3",
|
|
58
|
-
"nyc": "^15.1.0",
|
|
59
|
-
"oclif": "^3.9.1",
|
|
60
|
-
"prettier": "^2.8.8",
|
|
61
|
-
"pretty-quick": "^3.1.0",
|
|
62
|
-
"shx": "0.3.4",
|
|
63
|
-
"sinon": "10.0.0",
|
|
64
|
-
"ts-node": "^10.0.0",
|
|
65
|
-
"typescript": "^5.1.6",
|
|
66
|
-
"wireit": "^0.10.0"
|
|
201
|
+
"format": {
|
|
202
|
+
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
|
|
203
|
+
"files": [
|
|
204
|
+
"src/**/*.ts",
|
|
205
|
+
"test/**/*.ts",
|
|
206
|
+
"schemas/**/*.json",
|
|
207
|
+
"command-snapshot.json",
|
|
208
|
+
".prettier*"
|
|
209
|
+
],
|
|
210
|
+
"output": []
|
|
67
211
|
},
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
212
|
+
"lint": {
|
|
213
|
+
"command": "eslint src test --color --cache --cache-location .eslintcache",
|
|
214
|
+
"files": [
|
|
215
|
+
"src/**/*.ts",
|
|
216
|
+
"test/**/*.ts",
|
|
217
|
+
"messages/**",
|
|
218
|
+
"**/.eslint*",
|
|
219
|
+
"**/tsconfig.json"
|
|
220
|
+
],
|
|
221
|
+
"output": []
|
|
71
222
|
},
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"homepage": "https://github.com/salesforcecli/plugin-release-management",
|
|
80
|
-
"keywords": [
|
|
81
|
-
"force",
|
|
82
|
-
"salesforce",
|
|
83
|
-
"sfdx",
|
|
84
|
-
"salesforcedx",
|
|
85
|
-
"sfdx-plugin"
|
|
86
|
-
],
|
|
87
|
-
"license": "BSD-3-Clause",
|
|
88
|
-
"oclif": {
|
|
89
|
-
"commands": "./lib/commands",
|
|
90
|
-
"node": "14.15.4",
|
|
91
|
-
"bin": "sfdx",
|
|
92
|
-
"plugins": [
|
|
93
|
-
"@salesforce/plugin-trust"
|
|
94
|
-
],
|
|
95
|
-
"devPlugins": [
|
|
96
|
-
"@oclif/plugin-help",
|
|
97
|
-
"@oclif/plugin-command-snapshot",
|
|
98
|
-
"@salesforce/plugin-command-reference"
|
|
99
|
-
],
|
|
100
|
-
"topics": {
|
|
101
|
-
"cli": {
|
|
102
|
-
"description": "get information on the cli",
|
|
103
|
-
"subtopics": {
|
|
104
|
-
"versions": {
|
|
105
|
-
"description": "interact with CLI versions"
|
|
106
|
-
},
|
|
107
|
-
"tarballs": {
|
|
108
|
-
"description": "interact with CLI tarballs"
|
|
109
|
-
},
|
|
110
|
-
"install": {
|
|
111
|
-
"description": "utilities for CLI installation"
|
|
112
|
-
},
|
|
113
|
-
"release": {
|
|
114
|
-
"description": "utilities for building CLI releases"
|
|
115
|
-
},
|
|
116
|
-
"schemas": {
|
|
117
|
-
"description": "utilities for comparing command schemas"
|
|
118
|
-
},
|
|
119
|
-
"artifacts": {
|
|
120
|
-
"description": "utilities for comparing plugin artifacts"
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"channel": {
|
|
125
|
-
"description": "interact with aws channels for clis"
|
|
126
|
-
},
|
|
127
|
-
"dependabot": {
|
|
128
|
-
"description": "interact with dependabot PRs"
|
|
129
|
-
},
|
|
130
|
-
"github": {
|
|
131
|
-
"subtopics": {
|
|
132
|
-
"check": {
|
|
133
|
-
"description": "check github status"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"description": "interact with github issues"
|
|
137
|
-
},
|
|
138
|
-
"npm": {
|
|
139
|
-
"description": "release npm packages",
|
|
140
|
-
"subtopics": {
|
|
141
|
-
"dependencies": {
|
|
142
|
-
"description": "pin dependencies to a specific version in package.json"
|
|
143
|
-
},
|
|
144
|
-
"package": {
|
|
145
|
-
"description": "work with npm projects"
|
|
146
|
-
},
|
|
147
|
-
"release": {
|
|
148
|
-
"description": "validate npm releases"
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
"repositories": {
|
|
153
|
-
"description": "list and get information about SalesforceCLI-owned repositories"
|
|
154
|
-
},
|
|
155
|
-
"typescript": {
|
|
156
|
-
"description": "test updates to typescript version"
|
|
157
|
-
}
|
|
158
|
-
}
|
|
223
|
+
"test:compile": {
|
|
224
|
+
"command": "tsc -p \"./test\" --pretty",
|
|
225
|
+
"files": [
|
|
226
|
+
"test/**/*.ts",
|
|
227
|
+
"**/tsconfig.json"
|
|
228
|
+
],
|
|
229
|
+
"output": []
|
|
159
230
|
},
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
|
|
169
|
-
"lint": "wireit",
|
|
170
|
-
"postpack": "shx rm -f oclif.manifest.json npm-shrinkwrap.json",
|
|
171
|
-
"prepack": "sf-prepack && npm shrinkwrap",
|
|
172
|
-
"prepare": "sf-install",
|
|
173
|
-
"test": "wireit",
|
|
174
|
-
"test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
175
|
-
"test:only": "wireit",
|
|
176
|
-
"version": "oclif readme"
|
|
231
|
+
"test": {
|
|
232
|
+
"dependencies": [
|
|
233
|
+
"test:compile",
|
|
234
|
+
"test:only",
|
|
235
|
+
"test:command-reference",
|
|
236
|
+
"test:deprecation-policy",
|
|
237
|
+
"lint",
|
|
238
|
+
"test:json-schema"
|
|
239
|
+
]
|
|
177
240
|
},
|
|
178
|
-
"
|
|
179
|
-
|
|
241
|
+
"test:only": {
|
|
242
|
+
"command": "nyc mocha \"test/**/*.test.ts\"",
|
|
243
|
+
"env": {
|
|
244
|
+
"FORCE_COLOR": "2"
|
|
245
|
+
},
|
|
246
|
+
"files": [
|
|
247
|
+
"test/**/*.ts",
|
|
248
|
+
"src/**/*.ts",
|
|
249
|
+
"**/tsconfig.json",
|
|
250
|
+
".mocha*",
|
|
251
|
+
"!*.nut.ts",
|
|
252
|
+
".nycrc"
|
|
253
|
+
],
|
|
254
|
+
"output": []
|
|
180
255
|
},
|
|
181
|
-
"
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
"format": {
|
|
202
|
-
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
|
|
203
|
-
"files": [
|
|
204
|
-
"src/**/*.ts",
|
|
205
|
-
"test/**/*.ts",
|
|
206
|
-
"schemas/**/*.json",
|
|
207
|
-
"command-snapshot.json",
|
|
208
|
-
".prettier*"
|
|
209
|
-
],
|
|
210
|
-
"output": []
|
|
211
|
-
},
|
|
212
|
-
"lint": {
|
|
213
|
-
"command": "eslint src test --color --cache --cache-location .eslintcache",
|
|
214
|
-
"files": [
|
|
215
|
-
"src/**/*.ts",
|
|
216
|
-
"test/**/*.ts",
|
|
217
|
-
"messages/**",
|
|
218
|
-
"**/.eslint*",
|
|
219
|
-
"**/tsconfig.json"
|
|
220
|
-
],
|
|
221
|
-
"output": []
|
|
222
|
-
},
|
|
223
|
-
"test:compile": {
|
|
224
|
-
"command": "tsc -p \"./test\" --pretty",
|
|
225
|
-
"files": [
|
|
226
|
-
"test/**/*.ts",
|
|
227
|
-
"**/tsconfig.json"
|
|
228
|
-
],
|
|
229
|
-
"output": []
|
|
230
|
-
},
|
|
231
|
-
"test": {
|
|
232
|
-
"dependencies": [
|
|
233
|
-
"test:compile",
|
|
234
|
-
"test:only",
|
|
235
|
-
"test:command-reference",
|
|
236
|
-
"test:deprecation-policy",
|
|
237
|
-
"lint",
|
|
238
|
-
"test:json-schema"
|
|
239
|
-
]
|
|
240
|
-
},
|
|
241
|
-
"test:only": {
|
|
242
|
-
"command": "nyc mocha \"test/**/*.test.ts\"",
|
|
243
|
-
"env": {
|
|
244
|
-
"FORCE_COLOR": "2"
|
|
245
|
-
},
|
|
246
|
-
"files": [
|
|
247
|
-
"test/**/*.ts",
|
|
248
|
-
"src/**/*.ts",
|
|
249
|
-
"**/tsconfig.json",
|
|
250
|
-
".mocha*",
|
|
251
|
-
"!*.nut.ts",
|
|
252
|
-
".nycrc"
|
|
253
|
-
],
|
|
254
|
-
"output": []
|
|
255
|
-
},
|
|
256
|
-
"test:command-reference": {
|
|
257
|
-
"command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
|
|
258
|
-
"files": [
|
|
259
|
-
"src/**/*.ts",
|
|
260
|
-
"messages/**",
|
|
261
|
-
"package.json"
|
|
262
|
-
],
|
|
263
|
-
"output": [
|
|
264
|
-
"tmp/root"
|
|
265
|
-
]
|
|
266
|
-
},
|
|
267
|
-
"test:deprecation-policy": {
|
|
268
|
-
"command": "\"./bin/dev\" snapshot:compare",
|
|
269
|
-
"files": [
|
|
270
|
-
"src/**/*.ts"
|
|
271
|
-
],
|
|
272
|
-
"output": [],
|
|
273
|
-
"dependencies": [
|
|
274
|
-
"compile"
|
|
275
|
-
]
|
|
276
|
-
},
|
|
277
|
-
"test:json-schema": {
|
|
278
|
-
"command": "\"./bin/dev\" schema:compare",
|
|
279
|
-
"files": [
|
|
280
|
-
"src/**/*.ts",
|
|
281
|
-
"schemas"
|
|
282
|
-
],
|
|
283
|
-
"output": []
|
|
284
|
-
}
|
|
256
|
+
"test:command-reference": {
|
|
257
|
+
"command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
|
|
258
|
+
"files": [
|
|
259
|
+
"src/**/*.ts",
|
|
260
|
+
"messages/**",
|
|
261
|
+
"package.json"
|
|
262
|
+
],
|
|
263
|
+
"output": [
|
|
264
|
+
"tmp/root"
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
"test:deprecation-policy": {
|
|
268
|
+
"command": "\"./bin/dev\" snapshot:compare",
|
|
269
|
+
"files": [
|
|
270
|
+
"src/**/*.ts"
|
|
271
|
+
],
|
|
272
|
+
"output": [],
|
|
273
|
+
"dependencies": [
|
|
274
|
+
"compile"
|
|
275
|
+
]
|
|
285
276
|
},
|
|
286
|
-
"
|
|
287
|
-
|
|
288
|
-
|
|
277
|
+
"test:json-schema": {
|
|
278
|
+
"command": "\"./bin/dev\" schema:compare",
|
|
279
|
+
"files": [
|
|
280
|
+
"src/**/*.ts",
|
|
281
|
+
"schemas"
|
|
282
|
+
],
|
|
283
|
+
"output": []
|
|
289
284
|
}
|
|
290
|
-
}
|
|
285
|
+
}
|
|
286
|
+
}
|