@oclif/plugin-version 2.0.10-dev.1 → 2.0.10

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.
@@ -35,5 +35,5 @@
35
35
  ]
36
36
  }
37
37
  },
38
- "version": "2.0.10-dev.1"
38
+ "version": "2.0.10"
39
39
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@oclif/plugin-version",
3
3
  "description": "A command that shows the CLI version",
4
- "version": "2.0.10-dev.1",
4
+ "version": "2.0.10",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-version/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^3.14.1"
8
+ "@oclif/core": "^3.15.0"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@commitlint/config-conventional": "^17.8.1",
@@ -17,7 +17,7 @@
17
17
  "@types/node": "^18",
18
18
  "chai": "^4.3.10",
19
19
  "commitlint": "^17.8.1",
20
- "eslint": "^8.55.0",
20
+ "eslint": "^8.56.0",
21
21
  "eslint-config-oclif": "^5",
22
22
  "eslint-config-oclif-typescript": "^3",
23
23
  "eslint-config-prettier": "^9.1.0",
@@ -26,7 +26,7 @@
26
26
  "lint-staged": "^14.0.1",
27
27
  "mocha": "^10.2.0",
28
28
  "oclif": "^4",
29
- "prettier": "^3.1.0",
29
+ "prettier": "^3.1.1",
30
30
  "shx": "^0.3.4",
31
31
  "ts-node": "^10.9.2",
32
32
  "typescript": "^5"
@@ -36,8 +36,8 @@
36
36
  },
37
37
  "files": [
38
38
  "oclif.manifest.json",
39
- "/lib",
40
- "npm-shrinkwrap.json"
39
+ "oclif.lock",
40
+ "/lib"
41
41
  ],
42
42
  "homepage": "https://github.com/oclif/plugin-version",
43
43
  "keywords": [
@@ -54,16 +54,15 @@
54
54
  "repository": "oclif/plugin-version",
55
55
  "scripts": {
56
56
  "build": "shx rm -rf lib && tsc",
57
- "clean": "shx rm -f oclif.manifest.json",
58
- "commitlint": "commitlint --edit $1",
57
+ "clean": "shx rm -f oclif.manifest.json oclif.lock",
58
+ "commitlint": "commitlint",
59
59
  "lint": "eslint . --ext .ts",
60
- "lint-staged": "lint-staged",
61
- "postpublish": "npm run clean",
62
- "posttest": "npm run lint",
63
- "prepare": "husky install && npm run build",
64
- "prepublishOnly": "npm run build && oclif manifest . && oclif readme",
65
- "pretest": "npm run build --noEmit && tsc -p test --noEmit",
66
- "preversion": "npm run clean",
60
+ "postpublish": "yarn run clean",
61
+ "posttest": "yarn lint",
62
+ "prepare": "husky install && yarn build",
63
+ "prepublishOnly": "yarn run build && oclif lock && oclif manifest . && oclif readme",
64
+ "pretest": "yarn build --noEmit && tsc -p test --noEmit",
65
+ "preversion": "yarn run clean",
67
66
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
68
67
  "version": "oclif readme && git add README.md"
69
68
  },