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.
- package/README.md +6 -0
- package/package.json +4 -6
package/README.md
CHANGED
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.
|
|
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": {
|