@salesforce/plugin-limits 2.3.4 → 2.3.7

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 +33 -27
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.3.4",
2
+ "version": "2.3.7",
3
3
  "commands": {
4
4
  "limits:api:display": {
5
5
  "id": "limits:api:display",
package/package.json CHANGED
@@ -1,30 +1,30 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-limits",
3
3
  "description": "commands to display api limits to your org",
4
- "version": "2.3.4",
4
+ "version": "2.3.7",
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.1.7",
10
- "@salesforce/core": "^3.32.11",
9
+ "@oclif/core": "^2.4.0",
10
+ "@salesforce/core": "^3.33.4",
11
11
  "@salesforce/kit": "^1.8.5",
12
- "@salesforce/sf-plugins-core": "^2.1.1",
12
+ "@salesforce/sf-plugins-core": "^2.1.2",
13
13
  "@salesforce/ts-types": "^1.7.3",
14
14
  "tslib": "^2"
15
15
  },
16
16
  "devDependencies": {
17
- "@oclif/plugin-command-snapshot": "^3.2.16",
18
- "@oclif/test": "^2.3.4",
17
+ "@oclif/plugin-command-snapshot": "^3.3.6",
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": "^3.1.1",
21
+ "@salesforce/dev-scripts": "^4.1.1",
22
22
  "@salesforce/plugin-command-reference": "^2.3.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
26
  "@typescript-eslint/eslint-plugin": "^5.50.0",
27
- "@typescript-eslint/parser": "^5.48.1",
27
+ "@typescript-eslint/parser": "^5.53.0",
28
28
  "chai": "^4.3.7",
29
29
  "eslint": "^8.34.0",
30
30
  "eslint-config-prettier": "^8.6.0",
@@ -34,7 +34,7 @@
34
34
  "eslint-plugin-header": "^3.1.1",
35
35
  "eslint-plugin-import": "2.27.5",
36
36
  "eslint-plugin-jsdoc": "^39.6.4",
37
- "eslint-plugin-sf-plugin": "^1.8.1",
37
+ "eslint-plugin-sf-plugin": "^1.9.1",
38
38
  "husky": "^7.0.4",
39
39
  "mocha": "^9.1.3",
40
40
  "nyc": "^15.1.0",
@@ -46,7 +46,7 @@
46
46
  "swc": "^1.0.11",
47
47
  "ts-node": "^10.4.0",
48
48
  "typescript": "^4.9.5",
49
- "wireit": "^0.9.3"
49
+ "wireit": "^0.9.5"
50
50
  },
51
51
  "config": {},
52
52
  "engines": {
@@ -94,23 +94,18 @@
94
94
  },
95
95
  "repository": "salesforcecli/plugin-limits",
96
96
  "scripts": {
97
- "build": "sf-build",
97
+ "build": "wireit",
98
98
  "clean": "sf-clean",
99
99
  "clean-all": "sf-clean all",
100
100
  "clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
101
- "compile": "sf-compile",
101
+ "compile": "wireit",
102
102
  "docs": "sf-docs",
103
- "format": "sf-format",
104
- "lint": "sf-lint",
103
+ "format": "wireit",
104
+ "lint": "wireit",
105
105
  "postpack": "shx rm -f oclif.manifest.json",
106
106
  "prepack": "sf-prepack",
107
107
  "prepare": "sf-install",
108
- "pretest": "sf-compile-test",
109
- "test": "sf-test",
110
- "test:command-reference": "wireit",
111
- "test:compile": "wireit",
112
- "test:deprecation-policy": "wireit",
113
- "test:json-schema": "wireit",
108
+ "test": "wireit",
114
109
  "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 5",
115
110
  "test:only": "wireit",
116
111
  "version": "oclif-dev readme"
@@ -139,7 +134,15 @@
139
134
  "clean": "if-file-deleted"
140
135
  },
141
136
  "format": {
142
- "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\""
137
+ "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
138
+ "files": [
139
+ "src/**/*.ts",
140
+ "test/**/*.ts",
141
+ "schemas/**/*.json",
142
+ "command-snapshot.json",
143
+ ".prettier*"
144
+ ],
145
+ "output": []
143
146
  },
144
147
  "lint": {
145
148
  "command": "eslint src test --color --cache --cache-location .eslintcache",
@@ -147,8 +150,7 @@
147
150
  "src/**/*.ts",
148
151
  "test/**/*.ts",
149
152
  "messages/**",
150
- ".eslintignore",
151
- ".eslintrc.js"
153
+ ".eslint*"
152
154
  ],
153
155
  "output": []
154
156
  },
@@ -177,7 +179,10 @@
177
179
  "test/**/*.ts",
178
180
  "src/**/*.ts",
179
181
  "tsconfig.json",
180
- "test/tsconfig.json"
182
+ ".mocha*",
183
+ "test/tsconfig.json",
184
+ "!*.nut.ts",
185
+ ".nycrc"
181
186
  ],
182
187
  "output": []
183
188
  },
@@ -185,7 +190,8 @@
185
190
  "command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
186
191
  "files": [
187
192
  "src/**/*.ts",
188
- "messages/**"
193
+ "messages/**",
194
+ "package.json"
189
195
  ],
190
196
  "output": [
191
197
  "tmp/root"
@@ -211,7 +217,7 @@
211
217
  }
212
218
  },
213
219
  "sfdx": {
214
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.4.crt",
215
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-limits/2.3.4.sig"
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"
216
222
  }
217
223
  }