@salesforce/plugin-signups 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/oclif.manifest.json +1 -1
  2. package/package.json +117 -23
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.0",
2
+ "version": "1.4.1",
3
3
  "commands": {
4
4
  "org:create:shape": {
5
5
  "id": "org:create:shape",
package/package.json CHANGED
@@ -1,33 +1,33 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-signups",
3
3
  "description": "Commands to interact with org shapes",
4
- "version": "1.4.0",
4
+ "version": "1.4.1",
5
5
  "author": "Salesforce",
6
6
  "main": "lib/index.js",
7
7
  "bugs": "https://github.com/forcedotcom/cli/issues",
8
8
  "dependencies": {
9
- "@oclif/core": "^2.0.7",
9
+ "@oclif/core": "^2.1.1",
10
10
  "@salesforce/core": "^3.33.1",
11
- "@salesforce/sf-plugins-core": "^2.0.1",
11
+ "@salesforce/sf-plugins-core": "^2.1.1",
12
12
  "chalk": "^4.1.2",
13
13
  "change-case": "^4.1.2",
14
14
  "tslib": "^2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@oclif/plugin-command-snapshot": "^3.3.0",
18
- "@salesforce/cli-plugins-testkit": "^3.2.17",
18
+ "@salesforce/cli-plugins-testkit": "^3.2.20",
19
19
  "@salesforce/dev-config": "^3.0.1",
20
- "@salesforce/dev-scripts": "^3.1.0",
20
+ "@salesforce/dev-scripts": "^4.0.0-beta.9",
21
21
  "@salesforce/plugin-command-reference": "^2.2.10",
22
22
  "@salesforce/prettier-config": "^0.0.2",
23
23
  "@salesforce/ts-sinon": "1.4.4",
24
24
  "@salesforce/ts-types": "^1.7.2",
25
- "@swc/core": "^1.3.29",
25
+ "@swc/core": "^1.3.32",
26
26
  "@types/chai-as-promised": "^7.1.5",
27
27
  "@types/chai-string": "^1.4.2",
28
28
  "@types/inquirer": "^9.0.3",
29
29
  "@types/shelljs": "^0.8.11",
30
- "@typescript-eslint/eslint-plugin": "^5.45.0",
30
+ "@typescript-eslint/eslint-plugin": "^5.51.0",
31
31
  "@typescript-eslint/parser": "^5.47.1",
32
32
  "chai": "^4.3.7",
33
33
  "chai-as-promised": "7.1.1",
@@ -38,9 +38,9 @@
38
38
  "eslint-config-salesforce-license": "^0.2.0",
39
39
  "eslint-config-salesforce-typescript": "^1.1.1",
40
40
  "eslint-plugin-header": "^3.1.1",
41
- "eslint-plugin-import": "^2.27.4",
41
+ "eslint-plugin-import": "^2.27.5",
42
42
  "eslint-plugin-jsdoc": "^39.6.9",
43
- "eslint-plugin-sf-plugin": "^1.3.1",
43
+ "eslint-plugin-sf-plugin": "^1.8.1",
44
44
  "husky": "^7.0.4",
45
45
  "mocha": "^9.1.3",
46
46
  "nyc": "^15.1.0",
@@ -50,7 +50,8 @@
50
50
  "shx": "0.3.4",
51
51
  "sinon": "^11.1.1",
52
52
  "ts-node": "^10.2.1",
53
- "typescript": "^4.9.3"
53
+ "typescript": "^4.9.5",
54
+ "wireit": "^0.9.3"
54
55
  },
55
56
  "config": {},
56
57
  "engines": {
@@ -100,31 +101,124 @@
100
101
  },
101
102
  "repository": "salesforcecli/plugin-signups",
102
103
  "scripts": {
103
- "build": "sf-build",
104
+ "build": "wireit",
104
105
  "clean": "sf-clean",
105
106
  "clean-all": "sf-clean all",
106
107
  "clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
107
- "compile": "sf-compile",
108
+ "compile": "wireit",
108
109
  "docs": "sf-docs",
109
- "format": "sf-format",
110
- "lint": "sf-lint",
110
+ "format": "wireit",
111
+ "lint": "wireit",
111
112
  "postpack": "shx rm -f oclif.manifest.json",
112
- "posttest": "yarn lint && yarn test:deprecation-policy && yarn test:command-reference",
113
113
  "prepack": "sf-prepack",
114
114
  "prepare": "sf-install",
115
- "pretest": "sf-compile-test",
116
- "test": "sf-test",
117
- "test:command-reference": "./bin/dev commandreference:generate --erroronwarnings",
118
- "test:deprecation-policy": "./bin/dev snapshot:compare",
119
- "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
120
- "test:nuts:snapshots": "nyc mocha \"test/nuts/snapshots.nut.ts\" --slow 4500 --timeout 600000 --parallel",
115
+ "test": "wireit",
116
+ "test:command-reference": "wireit",
117
+ "test:compile": "wireit",
118
+ "test:deprecation-policy": "wireit",
119
+ "test:json-schema": "wireit",
120
+ "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 10",
121
+ "test:nuts:snapshots": "nyc mocha \"test/nuts/snapshots.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 10",
122
+ "test:only": "wireit",
121
123
  "version": "oclif readme"
122
124
  },
123
125
  "publishConfig": {
124
126
  "access": "public"
125
127
  },
128
+ "wireit": {
129
+ "build": {
130
+ "dependencies": [
131
+ "compile",
132
+ "lint"
133
+ ]
134
+ },
135
+ "compile": {
136
+ "command": "tsc -p . --pretty --incremental",
137
+ "files": [
138
+ "src/**/*.ts",
139
+ "tsconfig.json",
140
+ "messages/**"
141
+ ],
142
+ "output": [
143
+ "lib/**",
144
+ "*.tsbuildinfo"
145
+ ],
146
+ "clean": "if-file-deleted"
147
+ },
148
+ "format": {
149
+ "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\""
150
+ },
151
+ "lint": {
152
+ "command": "eslint src test --color --cache --cache-location .eslintcache",
153
+ "files": [
154
+ "src/**/*.ts",
155
+ "test/**/*.ts",
156
+ "messages/**",
157
+ ".eslintignore",
158
+ ".eslintrc.js"
159
+ ],
160
+ "output": []
161
+ },
162
+ "test:compile": {
163
+ "command": "tsc -p \"./test\" --pretty",
164
+ "files": [
165
+ "test/**/*.ts",
166
+ "tsconfig.json",
167
+ "test/tsconfig.json"
168
+ ],
169
+ "output": []
170
+ },
171
+ "test": {
172
+ "dependencies": [
173
+ "test:compile",
174
+ "test:only",
175
+ "test:command-reference",
176
+ "test:deprecation-policy",
177
+ "lint",
178
+ "test:json-schema"
179
+ ]
180
+ },
181
+ "test:only": {
182
+ "command": "nyc mocha \"test/**/*.test.ts\"",
183
+ "files": [
184
+ "test/**/*.ts",
185
+ "src/**/*.ts",
186
+ "tsconfig.json",
187
+ "test/tsconfig.json"
188
+ ],
189
+ "output": []
190
+ },
191
+ "test:command-reference": {
192
+ "command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
193
+ "files": [
194
+ "src/**/*.ts",
195
+ "messages/**"
196
+ ],
197
+ "output": [
198
+ "tmp/root"
199
+ ]
200
+ },
201
+ "test:deprecation-policy": {
202
+ "command": "\"./bin/dev\" snapshot:compare",
203
+ "files": [
204
+ "src/**/*.ts"
205
+ ],
206
+ "output": [],
207
+ "dependencies": [
208
+ "compile"
209
+ ]
210
+ },
211
+ "test:json-schema": {
212
+ "command": "\"./bin/dev\" schema:compare",
213
+ "files": [
214
+ "src/**/*.ts",
215
+ "schemas"
216
+ ],
217
+ "output": []
218
+ }
219
+ },
126
220
  "sfdx": {
127
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.0.crt",
128
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.0.sig"
221
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.1.crt",
222
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.1.sig"
129
223
  }
130
224
  }