sfdx-plugin-update-notifier 1.2.58 → 1.2.60
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.
- package/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/lib/hooks/init.js.map +1 -1
- package/lib/hooks/prerun.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/oclif.lock +339 -99
- package/oclif.manifest.json +1 -1
- package/package.json +12 -13
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sfdx-plugin-update-notifier",
|
|
3
3
|
"description": "update-notifier for sfdx plugins",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.60",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-update-notifier/issues",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@jayree/changelog": "^1.1.
|
|
10
|
-
"@oclif/core": "^3.
|
|
9
|
+
"@jayree/changelog": "^1.1.9",
|
|
10
|
+
"@oclif/core": "^3.14.1",
|
|
11
11
|
"@salesforce/kit": "^3.0.15",
|
|
12
12
|
"debug": "^4.3.4",
|
|
13
|
-
"oclif-plugin-update-notifier": "^1.5.
|
|
13
|
+
"oclif-plugin-update-notifier": "^1.5.54",
|
|
14
14
|
"tslib": "^2.6.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@oclif/plugin-command-snapshot": "^5.0.
|
|
18
|
-
"@oclif/plugin-help": "^6.0.
|
|
17
|
+
"@oclif/plugin-command-snapshot": "^5.0.4",
|
|
18
|
+
"@oclif/plugin-help": "^6.0.8",
|
|
19
19
|
"@oclif/test": "^3.1.3",
|
|
20
|
-
"@salesforce/dev-scripts": "^
|
|
20
|
+
"@salesforce/dev-scripts": "^8.1.1",
|
|
21
21
|
"@types/debug": "^4.1.12",
|
|
22
22
|
"@types/fs-extra": "^11.0.4",
|
|
23
23
|
"@types/jsforce": "^1.11.5",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"oclif": "^4.0.4",
|
|
29
29
|
"patch-package": "^8.0.0",
|
|
30
30
|
"pinst": "^3.0.0",
|
|
31
|
-
"prettier": "^3.1.
|
|
31
|
+
"prettier": "^3.1.1",
|
|
32
32
|
"pretty-quick": "^3.1.3",
|
|
33
|
-
"ts-node": "^10.9.
|
|
34
|
-
"typescript": "^5.
|
|
33
|
+
"ts-node": "^10.9.2",
|
|
34
|
+
"typescript": "^5.3.3"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=16.0.0"
|
|
@@ -82,7 +82,6 @@
|
|
|
82
82
|
"prepack": "sf-prepack",
|
|
83
83
|
"prepare": "patch-package && sf-install",
|
|
84
84
|
"test": "wireit",
|
|
85
|
-
"test:compile": "wireit",
|
|
86
85
|
"test:only": "wireit",
|
|
87
86
|
"version": "oclif readme --no-aliases"
|
|
88
87
|
},
|
|
@@ -151,7 +150,7 @@
|
|
|
151
150
|
"output": []
|
|
152
151
|
},
|
|
153
152
|
"test:deprecation-policy": {
|
|
154
|
-
"command": "ts-node \"./bin/dev.js\" snapshot:compare",
|
|
153
|
+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
|
|
155
154
|
"files": [
|
|
156
155
|
"src/**/*.ts"
|
|
157
156
|
],
|
|
@@ -161,7 +160,7 @@
|
|
|
161
160
|
]
|
|
162
161
|
},
|
|
163
162
|
"test:json-schema": {
|
|
164
|
-
"command": "ts-node \"./bin/dev.js\" schema:compare",
|
|
163
|
+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
|
|
165
164
|
"files": [
|
|
166
165
|
"src/**/*.ts",
|
|
167
166
|
"schemas"
|