@salesforce/plugin-apex 2.2.5 → 2.2.6

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 +12 -13
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.2.5",
2
+ "version": "2.2.6",
3
3
  "commands": {
4
4
  "apex:run": {
5
5
  "id": "apex:run",
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-apex",
3
3
  "description": "Apex commands",
4
- "version": "2.2.5",
4
+ "version": "2.2.6",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "main": "lib/index.js",
8
8
  "dependencies": {
9
9
  "@oclif/core": "^2.4.0",
10
10
  "@salesforce/apex-node": "^1.6.0",
11
- "@salesforce/core": "^3.33.5",
11
+ "@salesforce/core": "^3.34.1",
12
12
  "@salesforce/sf-plugins-core": "^2.2.4",
13
13
  "chalk": "^4.1.0",
14
14
  "tslib": "^2"
@@ -17,16 +17,16 @@
17
17
  "@oclif/plugin-command-snapshot": "^3.3.8",
18
18
  "@oclif/plugin-help": "^5",
19
19
  "@salesforce/dev-config": "3.1.0",
20
- "@salesforce/dev-scripts": "^4.1.2",
20
+ "@salesforce/dev-scripts": "^4.1.3",
21
21
  "@salesforce/plugin-command-reference": "^2.4.1",
22
22
  "@salesforce/prettier-config": "^0.0.2",
23
23
  "@salesforce/ts-sinon": "^1.4.4",
24
24
  "@salesforce/ts-types": "1.7.3",
25
25
  "@swc/core": "^1.3.39",
26
- "@typescript-eslint/eslint-plugin": "^5.53.0",
26
+ "@typescript-eslint/eslint-plugin": "^5.55.0",
27
27
  "@typescript-eslint/parser": "^5.54.1",
28
28
  "chai": "^4.2.0",
29
- "eslint": "^8.35.0",
29
+ "eslint": "^8.36.0",
30
30
  "eslint-config-prettier": "^8.6.0",
31
31
  "eslint-config-salesforce": "^1.1.0",
32
32
  "eslint-config-salesforce-license": "^0.2.0",
@@ -134,7 +134,7 @@
134
134
  "command": "tsc -p . --pretty --incremental",
135
135
  "files": [
136
136
  "src/**/*.ts",
137
- "tsconfig.json",
137
+ "**/tsconfig.json",
138
138
  "messages/**"
139
139
  ],
140
140
  "output": [
@@ -160,7 +160,8 @@
160
160
  "src/**/*.ts",
161
161
  "test/**/*.ts",
162
162
  "messages/**",
163
- ".eslint*"
163
+ "**/.eslint*",
164
+ "**/tsconfig.json"
164
165
  ],
165
166
  "output": []
166
167
  },
@@ -168,8 +169,7 @@
168
169
  "command": "tsc -p \"./test\" --pretty",
169
170
  "files": [
170
171
  "test/**/*.ts",
171
- "tsconfig.json",
172
- "test/tsconfig.json"
172
+ "**/tsconfig.json"
173
173
  ],
174
174
  "output": []
175
175
  },
@@ -191,9 +191,8 @@
191
191
  "files": [
192
192
  "test/**/*.ts",
193
193
  "src/**/*.ts",
194
- "tsconfig.json",
194
+ "**/tsconfig.json",
195
195
  ".mocha*",
196
- "test/tsconfig.json",
197
196
  "!*.nut.ts",
198
197
  ".nycrc"
199
198
  ],
@@ -230,7 +229,7 @@
230
229
  }
231
230
  },
232
231
  "sfdx": {
233
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.5.crt",
234
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.5.sig"
232
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.6.crt",
233
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/2.2.6.sig"
235
234
  }
236
235
  }