sfdx-plugin-update-notifier 1.2.54 → 1.2.56

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.
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "commands": {},
3
- "version": "1.2.54"
3
+ "version": "1.2.56"
4
4
  }
package/package.json CHANGED
@@ -1,54 +1,37 @@
1
1
  {
2
2
  "name": "sfdx-plugin-update-notifier",
3
3
  "description": "update-notifier for sfdx plugins",
4
- "version": "1.2.54",
4
+ "version": "1.2.56",
5
5
  "author": "jayree",
6
6
  "type": "module",
7
7
  "bugs": "https://github.com/jayree/sfdx-plugin-update-notifier/issues",
8
8
  "dependencies": {
9
9
  "@jayree/changelog": "^1.1.7",
10
- "@oclif/core": "^3.0.9",
10
+ "@oclif/core": "^3.11.0",
11
11
  "@salesforce/kit": "^3.0.15",
12
12
  "debug": "^4.3.4",
13
- "oclif-plugin-update-notifier": "^1.5.48",
13
+ "oclif-plugin-update-notifier": "^1.5.50",
14
14
  "tslib": "^2.6.0"
15
15
  },
16
16
  "devDependencies": {
17
- "@oclif/plugin-command-snapshot": "^5.0.1",
18
- "@oclif/plugin-help": "^6.0.5",
19
- "@oclif/test": "^3.1.0",
20
- "@salesforce/dev-config": "^4.1.0",
21
- "@salesforce/dev-scripts": "^5.11.0",
22
- "@salesforce/prettier-config": "^0.0.3",
23
- "@types/debug": "^4.1.10",
24
- "@types/fs-extra": "^11.0.3",
25
- "@types/jsforce": "^1.11.3",
26
- "@typescript-eslint/eslint-plugin": "^6.9.1",
27
- "@typescript-eslint/parser": "^6.9.0",
17
+ "@oclif/plugin-command-snapshot": "^5.0.2",
18
+ "@oclif/plugin-help": "^6.0.6",
19
+ "@oclif/test": "^3.1.2",
20
+ "@salesforce/dev-scripts": "^7.1.1",
21
+ "@types/debug": "^4.1.12",
22
+ "@types/fs-extra": "^11.0.4",
23
+ "@types/jsforce": "^1.11.4",
28
24
  "c8": "^8.0.1",
29
- "chai": "^4.3.8",
30
- "eslint": "^8.52.0",
31
- "eslint-config-prettier": "^9.0.0",
32
- "eslint-config-salesforce": "^2.0.2",
33
- "eslint-config-salesforce-typescript": "^3.0.2",
34
- "eslint-plugin-header": "^3.1.1",
35
- "eslint-plugin-import": "^2.29.0",
36
- "eslint-plugin-jsdoc": "^46.8.2",
37
25
  "eslint-plugin-prettier": "^5.0.1",
38
- "eslint-plugin-sf-plugin": "^1.16.13",
39
- "husky": "^8.0.3",
26
+ "eslint-plugin-sf-plugin": "^1.16.15",
40
27
  "is-ci": "^3.0.1",
41
- "mocha": "^10.2.0",
42
- "nyc": "^15.1.0",
43
28
  "oclif": "^4.0.3",
44
29
  "patch-package": "^8.0.0",
45
30
  "pinst": "^3.0.0",
46
- "prettier": "^3.0.3",
31
+ "prettier": "^3.1.0",
47
32
  "pretty-quick": "^3.1.3",
48
- "sinon": "^17.0.1",
49
33
  "ts-node": "^10.9.1",
50
- "typescript": "^5.2.2",
51
- "wireit": "^0.14.1"
34
+ "typescript": "^5.2.2"
52
35
  },
53
36
  "engines": {
54
37
  "node": ">=16.0.0"
@@ -93,11 +76,14 @@
93
76
  "clean": "sf-clean",
94
77
  "clean-all": "sf-clean all",
95
78
  "compile": "wireit",
79
+ "docs": "sf-docs",
96
80
  "format": "wireit",
97
81
  "lint": "wireit",
98
82
  "prepack": "sf-prepack",
99
83
  "prepare": "patch-package && sf-install",
100
84
  "test": "wireit",
85
+ "test:compile": "wireit",
86
+ "test:only": "wireit",
101
87
  "version": "oclif readme --no-aliases"
102
88
  },
103
89
  "release": {
@@ -149,13 +135,23 @@
149
135
  },
150
136
  "test": {
151
137
  "dependencies": [
138
+ "test:compile",
139
+ "test:only",
152
140
  "test:deprecation-policy",
153
141
  "lint",
154
142
  "test:json-schema"
155
143
  ]
156
144
  },
145
+ "test:compile": {
146
+ "command": "tsc -p \"./test\" --pretty",
147
+ "files": [
148
+ "test/**/*.ts",
149
+ "**/tsconfig.json"
150
+ ],
151
+ "output": []
152
+ },
157
153
  "test:deprecation-policy": {
158
- "command": "\"./bin/dev.js\" snapshot:compare",
154
+ "command": "ts-node \"./bin/dev.js\" snapshot:compare",
159
155
  "files": [
160
156
  "src/**/*.ts"
161
157
  ],
@@ -165,12 +161,27 @@
165
161
  ]
166
162
  },
167
163
  "test:json-schema": {
168
- "command": "\"./bin/dev.js\" schema:compare",
164
+ "command": "ts-node \"./bin/dev.js\" schema:compare",
169
165
  "files": [
170
166
  "src/**/*.ts",
171
167
  "schemas"
172
168
  ],
173
169
  "output": []
170
+ },
171
+ "test:only": {
172
+ "command": "c8 mocha \"test/**/*.test.ts\"",
173
+ "env": {
174
+ "FORCE_COLOR": "2"
175
+ },
176
+ "files": [
177
+ "test/**/*.ts",
178
+ "src/**/*.ts",
179
+ "**/tsconfig.json",
180
+ ".mocha*",
181
+ "!*.nut.ts",
182
+ ".nycrc"
183
+ ],
184
+ "output": []
174
185
  }
175
186
  }
176
187
  }