which-webstorm 4.1.6-dev-bbb36e3 → 4.1.6-dev-c8d489d
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/Makefile +8 -5
- package/package.json +6 -3
package/Makefile
CHANGED
|
@@ -1,27 +1,30 @@
|
|
|
1
|
-
.PHONY: default build clean docs pretty lint test run
|
|
1
|
+
.PHONY: default build clean docs git-hook pretty lint test run
|
|
2
2
|
|
|
3
3
|
default: clean build
|
|
4
4
|
|
|
5
5
|
build: output
|
|
6
6
|
|
|
7
7
|
clean:
|
|
8
|
-
rm
|
|
8
|
+
rm --force --recursive node_modules output
|
|
9
9
|
|
|
10
10
|
docs:
|
|
11
11
|
@echo "This project has no documentation."
|
|
12
12
|
|
|
13
|
+
git-hook:
|
|
14
|
+
echo "make pretty" > .git/hooks/pre-commit
|
|
15
|
+
|
|
13
16
|
pretty:
|
|
14
17
|
yarn biome check --write --no-errors-on-unmatched
|
|
18
|
+
npm pkg fix
|
|
15
19
|
|
|
16
20
|
lint:
|
|
17
21
|
yarn biome check .
|
|
18
22
|
yarn tsc --noEmit
|
|
19
23
|
|
|
20
|
-
test:
|
|
21
|
-
yarn tsc
|
|
24
|
+
test: build
|
|
22
25
|
yarn c8 --reporter=html-spa mocha output/*.test.js
|
|
23
26
|
|
|
24
|
-
run:
|
|
27
|
+
run: build
|
|
25
28
|
node ./output/main.js
|
|
26
29
|
|
|
27
30
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "which-webstorm",
|
|
4
|
-
"version": "4.1.6-dev-
|
|
4
|
+
"version": "4.1.6-dev-c8d489d",
|
|
5
5
|
"description": "Find WebStorm binary",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/oliversalzburg/which-webstorm.git"
|
|
10
|
+
"url": "git+https://github.com/oliversalzburg/which-webstorm.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/oliversalzburg/which-webstorm/issues"
|
|
11
14
|
},
|
|
12
15
|
"type": "module",
|
|
13
16
|
"main": "output/main.js",
|
|
@@ -36,7 +39,7 @@
|
|
|
36
39
|
"@types/which": "3.0.4",
|
|
37
40
|
"c8": "10.1.3",
|
|
38
41
|
"chai": "5.2.0",
|
|
39
|
-
"lint-staged": "15.3
|
|
42
|
+
"lint-staged": "15.4.3",
|
|
40
43
|
"mocha": "11.0.1",
|
|
41
44
|
"typescript": "5.7.3"
|
|
42
45
|
},
|