@salesforce/plugin-limits 2.3.7 → 2.3.9

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 +21 -19
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.3.7",
2
+ "version": "2.3.9",
3
3
  "commands": {
4
4
  "limits:api:display": {
5
5
  "id": "limits:api:display",
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-limits",
3
3
  "description": "commands to display api limits to your org",
4
- "version": "2.3.7",
4
+ "version": "2.3.9",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "main": "lib/index.js",
8
8
  "dependencies": {
9
- "@oclif/core": "^2.4.0",
9
+ "@oclif/core": "^2.6.4",
10
10
  "@salesforce/core": "^3.33.4",
11
11
  "@salesforce/kit": "^1.8.5",
12
- "@salesforce/sf-plugins-core": "^2.1.2",
12
+ "@salesforce/sf-plugins-core": "^2.2.4",
13
13
  "@salesforce/ts-types": "^1.7.3",
14
14
  "tslib": "^2"
15
15
  },
@@ -18,23 +18,23 @@
18
18
  "@oclif/test": "^2.3.8",
19
19
  "@salesforce/cli-plugins-testkit": "^3.2.21",
20
20
  "@salesforce/dev-config": "^3.1.0",
21
- "@salesforce/dev-scripts": "^4.1.1",
22
- "@salesforce/plugin-command-reference": "^2.3.1",
21
+ "@salesforce/dev-scripts": "^4.1.3",
22
+ "@salesforce/plugin-command-reference": "^2.4.1",
23
23
  "@salesforce/prettier-config": "^0.0.2",
24
24
  "@salesforce/ts-sinon": "^1.4.6",
25
25
  "@swc/core": "^1.3.32",
26
- "@typescript-eslint/eslint-plugin": "^5.50.0",
27
- "@typescript-eslint/parser": "^5.53.0",
26
+ "@typescript-eslint/eslint-plugin": "^5.55.0",
27
+ "@typescript-eslint/parser": "^5.55.0",
28
28
  "chai": "^4.3.7",
29
- "eslint": "^8.34.0",
29
+ "eslint": "^8.36.0",
30
30
  "eslint-config-prettier": "^8.6.0",
31
31
  "eslint-config-salesforce": "^1.1.1",
32
- "eslint-config-salesforce-license": "^0.1.6",
32
+ "eslint-config-salesforce-license": "^0.2.0",
33
33
  "eslint-config-salesforce-typescript": "^1.1.1",
34
34
  "eslint-plugin-header": "^3.1.1",
35
35
  "eslint-plugin-import": "2.27.5",
36
- "eslint-plugin-jsdoc": "^39.6.4",
37
- "eslint-plugin-sf-plugin": "^1.9.1",
36
+ "eslint-plugin-jsdoc": "^39.9.1",
37
+ "eslint-plugin-sf-plugin": "^1.14.0",
38
38
  "husky": "^7.0.4",
39
39
  "mocha": "^9.1.3",
40
40
  "nyc": "^15.1.0",
@@ -124,7 +124,7 @@
124
124
  "command": "tsc -p . --pretty --incremental",
125
125
  "files": [
126
126
  "src/**/*.ts",
127
- "tsconfig.json",
127
+ "**/tsconfig.json",
128
128
  "messages/**"
129
129
  ],
130
130
  "output": [
@@ -150,7 +150,8 @@
150
150
  "src/**/*.ts",
151
151
  "test/**/*.ts",
152
152
  "messages/**",
153
- ".eslint*"
153
+ "**/.eslint*",
154
+ "**/tsconfig.json"
154
155
  ],
155
156
  "output": []
156
157
  },
@@ -158,8 +159,7 @@
158
159
  "command": "tsc -p \"./test\" --pretty",
159
160
  "files": [
160
161
  "test/**/*.ts",
161
- "tsconfig.json",
162
- "test/tsconfig.json"
162
+ "**/tsconfig.json"
163
163
  ],
164
164
  "output": []
165
165
  },
@@ -175,12 +175,14 @@
175
175
  },
176
176
  "test:only": {
177
177
  "command": "nyc mocha \"test/**/*.test.ts\"",
178
+ "env": {
179
+ "FORCE_COLOR": "2"
180
+ },
178
181
  "files": [
179
182
  "test/**/*.ts",
180
183
  "src/**/*.ts",
181
- "tsconfig.json",
184
+ "**/tsconfig.json",
182
185
  ".mocha*",
183
- "test/tsconfig.json",
184
186
  "!*.nut.ts",
185
187
  ".nycrc"
186
188
  ],
@@ -217,7 +219,7 @@
217
219
  }
218
220
  },
219
221
  "sfdx": {
220
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.7.crt",
221
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.7.sig"
222
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.9.crt",
223
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.9.sig"
222
224
  }
223
225
  }