which-webstorm 4.0.3-dev.0 → 4.1.1-dev.0

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +4 -6
package/README.md CHANGED
@@ -34,3 +34,9 @@ Open a specific directory in WebStorm:
34
34
  ```shell
35
35
  $ wstorm /home/oliver/projects/which-webstorm
36
36
  ```
37
+
38
+ ## Release Process
39
+
40
+ ```
41
+ npm version patch --message "chore: Version bump %s"
42
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "which-webstorm",
4
- "version": "4.0.3-dev.0",
4
+ "version": "4.1.1-dev.0",
5
5
  "description": "Find WebStorm binary",
6
6
  "license": "MIT",
7
7
  "author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
@@ -24,12 +24,10 @@
24
24
  "lint:prettier": "prettier --check .",
25
25
  "lint:tsc": "tsc --noEmit",
26
26
  "nextversion": "./.scripts/manifest-version.cjs",
27
- "npm:publish": "npm publish",
28
- "npm:publish:major": "npm version major && npm publish",
29
- "npm:publish:minor": "npm version minor && npm publish",
30
- "npm:publish:patch": "npm version patch && npm publish",
31
27
  "test": "yarn build && node $(yarn bin mocha) output/*.test.js",
32
- "test:coverage": "tsc && c8 --reporter=html-spa node $(yarn bin mocha) output/*.test.js"
28
+ "test:coverage": "tsc && c8 --reporter=html-spa node $(yarn bin mocha) output/*.test.js",
29
+ "preversion": "yarn run lint && yarn run build && yarn run test",
30
+ "postversion": "git push"
33
31
  },
34
32
  "types": "output/main.d.ts",
35
33
  "dependencies": {