which-webstorm 4.1.6-dev-64e92d4 → 4.1.6-dev-2b93d74

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/Makefile +10 -7
  2. package/package.json +5 -2
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 -rf ./output
8
+ rm --force --recursive node_modules output
9
9
 
10
10
  docs:
11
11
  @echo "This project has no documentation."
12
12
 
13
- pretty:
13
+ git-hook:
14
+ echo "make pretty" > .git/hooks/pre-commit
15
+
16
+ pretty: node_modules
14
17
  yarn biome check --write --no-errors-on-unmatched
18
+ npm pkg fix
15
19
 
16
- lint:
20
+ lint: node_modules
17
21
  yarn biome check .
18
22
  yarn tsc --noEmit
19
23
 
20
- test: clean
21
- yarn tsc
24
+ test: build
22
25
  yarn c8 --reporter=html-spa mocha output/*.test.js
23
26
 
24
- run: clean build
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-64e92d4",
4
+ "version": "4.1.6-dev-2b93d74",
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",