@salesforce/plugin-signups 1.4.9 → 1.4.11

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.
Files changed (2) hide show
  1. package/oclif.manifest.json +1 -1
  2. package/package.json +13 -14
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.9",
2
+ "version": "1.4.11",
3
3
  "commands": {
4
4
  "org:create:shape": {
5
5
  "id": "org:create:shape",
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-signups",
3
3
  "description": "Commands to interact with org shapes",
4
- "version": "1.4.9",
4
+ "version": "1.4.11",
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.6.4",
10
- "@salesforce/core": "^3.33.6",
9
+ "@oclif/core": "^2.7.1",
10
+ "@salesforce/core": "^3.34.6",
11
11
  "@salesforce/kit": "^1.9.2",
12
12
  "@salesforce/sf-plugins-core": "^2.2.5",
13
13
  "chalk": "^4.1.2",
@@ -18,7 +18,7 @@
18
18
  "@oclif/plugin-command-snapshot": "^3.3.8",
19
19
  "@salesforce/cli-plugins-testkit": "^3.2.23",
20
20
  "@salesforce/dev-config": "^3.0.1",
21
- "@salesforce/dev-scripts": "^4.1.2",
21
+ "@salesforce/dev-scripts": "^4.1.3",
22
22
  "@salesforce/plugin-command-reference": "^2.4.1",
23
23
  "@salesforce/prettier-config": "^0.0.2",
24
24
  "@salesforce/ts-sinon": "^1.4.6",
@@ -41,12 +41,12 @@
41
41
  "eslint-plugin-header": "^3.1.1",
42
42
  "eslint-plugin-import": "^2.27.5",
43
43
  "eslint-plugin-jsdoc": "^39.6.9",
44
- "eslint-plugin-sf-plugin": "^1.13.0",
44
+ "eslint-plugin-sf-plugin": "^1.14.0",
45
45
  "husky": "^7.0.4",
46
46
  "mocha": "^9.1.3",
47
47
  "nyc": "^15.1.0",
48
48
  "oclif": "^3.7.0",
49
- "prettier": "^2.8.4",
49
+ "prettier": "^2.8.7",
50
50
  "pretty-quick": "^3.1.0",
51
51
  "shx": "0.3.4",
52
52
  "sinon": "^11.1.1",
@@ -133,7 +133,7 @@
133
133
  "command": "tsc -p . --pretty --incremental",
134
134
  "files": [
135
135
  "src/**/*.ts",
136
- "tsconfig.json",
136
+ "**/tsconfig.json",
137
137
  "messages/**"
138
138
  ],
139
139
  "output": [
@@ -159,7 +159,8 @@
159
159
  "src/**/*.ts",
160
160
  "test/**/*.ts",
161
161
  "messages/**",
162
- ".eslint*"
162
+ "**/.eslint*",
163
+ "**/tsconfig.json"
163
164
  ],
164
165
  "output": []
165
166
  },
@@ -167,8 +168,7 @@
167
168
  "command": "tsc -p \"./test\" --pretty",
168
169
  "files": [
169
170
  "test/**/*.ts",
170
- "tsconfig.json",
171
- "test/tsconfig.json"
171
+ "**/tsconfig.json"
172
172
  ],
173
173
  "output": []
174
174
  },
@@ -190,9 +190,8 @@
190
190
  "files": [
191
191
  "test/**/*.ts",
192
192
  "src/**/*.ts",
193
- "tsconfig.json",
193
+ "**/tsconfig.json",
194
194
  ".mocha*",
195
- "test/tsconfig.json",
196
195
  "!*.nut.ts",
197
196
  ".nycrc"
198
197
  ],
@@ -229,7 +228,7 @@
229
228
  }
230
229
  },
231
230
  "sfdx": {
232
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.9.crt",
233
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.9.sig"
231
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.11.crt",
232
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.11.sig"
234
233
  }
235
234
  }