@oclif/plugin-version 2.0.10-dev.0 → 2.0.10-dev.2

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.0"
38
+ "version": "2.0.10-dev.2"
39
39
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/plugin-version",
3
3
  "description": "A command that shows the CLI version",
4
- "version": "2.0.10-dev.0",
4
+ "version": "2.0.10-dev.2",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-version/issues",
7
7
  "dependencies": {
@@ -36,9 +36,9 @@
36
36
  },
37
37
  "files": [
38
38
  "oclif.manifest.json",
39
- "oclif.lock",
40
39
  "/lib",
41
- "npm-shrinkwrap.json"
40
+ "npm-shrinkwrap.json",
41
+ "oclif.lock"
42
42
  ],
43
43
  "homepage": "https://github.com/oclif/plugin-version",
44
44
  "keywords": [
@@ -55,15 +55,16 @@
55
55
  "repository": "oclif/plugin-version",
56
56
  "scripts": {
57
57
  "build": "shx rm -rf lib && tsc",
58
- "clean": "shx rm -f oclif.manifest.json oclif.lock",
59
- "commitlint": "commitlint",
58
+ "clean": "shx rm -f oclif.manifest.json",
59
+ "commitlint": "commitlint --edit $1",
60
60
  "lint": "eslint . --ext .ts",
61
- "postpublish": "yarn run clean",
61
+ "lint-staged": "lint-staged",
62
+ "postpublish": "yarn clean",
62
63
  "posttest": "yarn lint",
63
64
  "prepare": "husky install && yarn build",
64
- "prepublishOnly": "yarn run build && oclif lock && oclif manifest . && oclif readme",
65
+ "prepublishOnly": "yarn build && oclif manifest . && oclif readme && oclif lock && npm shrinkwrap",
65
66
  "pretest": "yarn build --noEmit && tsc -p test --noEmit",
66
- "preversion": "yarn run clean",
67
+ "preversion": "yarn clean",
67
68
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
68
69
  "version": "oclif readme && git add README.md"
69
70
  },