@jayree/sfdx-plugin-manifest 3.1.53 → 3.1.54

Sign up to get free protection for your applications and to get access to all the features.
@@ -299,5 +299,5 @@
299
299
  ]
300
300
  }
301
301
  },
302
- "version": "3.1.53"
302
+ "version": "3.1.54"
303
303
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jayree/sfdx-plugin-manifest",
3
3
  "description": "A Salesforce CLI plugin containing commands for creating manifest files from Salesforce orgs or git commits of sfdx projects.",
4
- "version": "3.1.53",
4
+ "version": "3.1.54",
5
5
  "author": "jayree",
6
6
  "type": "module",
7
7
  "bugs": "https://github.com/jayree/sfdx-plugin-manifest/issues",
@@ -23,7 +23,7 @@
23
23
  "@oclif/plugin-command-snapshot": "^5.0.8",
24
24
  "@oclif/plugin-help": "^6.0.12",
25
25
  "@salesforce/cli-plugins-testkit": "^5.1.9",
26
- "@salesforce/dev-scripts": "^8.3.0",
26
+ "@salesforce/dev-scripts": "^8.4.0",
27
27
  "@salesforce/ts-sinon": "^1.4.19",
28
28
  "@types/debug": "^4.1.12",
29
29
  "@types/fs-extra": "^11.0.4",
@@ -38,7 +38,6 @@
38
38
  "patch-package": "^8.0.0",
39
39
  "prettier": "^3.2.5",
40
40
  "pretty-quick": "^4.0.0",
41
- "shx": "^0.3.4",
42
41
  "ts-node": "^10.9.2",
43
42
  "typedoc": "0.25.8",
44
43
  "typedoc-plugin-missing-exports": "2.2.0",
@@ -48,13 +47,13 @@
48
47
  "node": ">=16.0.0"
49
48
  },
50
49
  "files": [
50
+ "/CHANGELOG.md",
51
51
  "/lib",
52
52
  "/messages",
53
+ "/npm-shrinkwrap.json",
54
+ "/oclif.lock",
53
55
  "/oclif.manifest.json",
54
- "/CHANGELOG.md",
55
- "/bin/is-sfdx.js",
56
- "/schemas",
57
- "/oclif.lock"
56
+ "/schemas"
58
57
  ],
59
58
  "homepage": "https://github.com/jayree/sfdx-plugin-manifest",
60
59
  "keywords": [
@@ -114,6 +113,7 @@
114
113
  "docs": "sf-docs",
115
114
  "format": "wireit",
116
115
  "lint": "wireit",
116
+ "postpack": "sf-clean",
117
117
  "prepack": "sf-prepack",
118
118
  "prepare": "patch-package && sf-install",
119
119
  "test": "wireit",
package/bin/is-sfdx.js DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
- process.exit(process.env.SFDX_BINPATH || process.env.SFDX_UPDATE_INSTRUCTIONS ? 0 : 1);