watskeburt 0.12.0 → 0.12.1

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -24,7 +24,6 @@ but for just this simple usage they're a bit overkill.
24
24
  ### :scroll: API
25
25
 
26
26
  ```javascript
27
- // const { list, getSHA } = require("watskeburt"); // in commonjs contexts you can also require it
28
27
  import { list, getSHA } from "watskeburt";
29
28
 
30
29
  // print the SHA1 of the current HEAD
@@ -0,0 +1 @@
1
+ export const VERSION = "0.12.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "watskeburt",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "List files changed since a git revision",
5
5
  "keywords": [
6
6
  "git",
@@ -19,17 +19,17 @@
19
19
  "url": "https://sverweij.github.io"
20
20
  },
21
21
  "license": "MIT",
22
- "bin": "dist/esm/cli.js",
23
- "main": "dist/esm/main.js",
24
- "module": "dist/esm/main.js",
22
+ "bin": "dist/cli.js",
23
+ "main": "dist/main.js",
24
+ "module": "dist/main.js",
25
25
  "type": "module",
26
26
  "sideEffects": false,
27
27
  "exports": {
28
28
  ".": [
29
29
  {
30
- "import": "./dist/esm/main.js"
30
+ "import": "./dist/main.js"
31
31
  },
32
- "./dist/esm/main.js"
32
+ "./dist/main.js"
33
33
  ]
34
34
  },
35
35
  "types": "types/watskeburt.d.ts",
@@ -42,20 +42,20 @@
42
42
  "README.md"
43
43
  ],
44
44
  "devDependencies": {
45
- "@types/node": "20.4.1",
46
- "@typescript-eslint/eslint-plugin": "6.0.0",
47
- "c8": "8.0.0",
48
- "dependency-cruiser": "13.1.0",
49
- "eslint": "8.44.0",
45
+ "@types/node": "20.4.5",
46
+ "@typescript-eslint/eslint-plugin": "6.2.1",
47
+ "c8": "8.0.1",
48
+ "dependency-cruiser": "13.1.1",
49
+ "eslint": "8.46.0",
50
50
  "eslint-config-moving-meadow": "4.0.2",
51
- "eslint-config-prettier": "8.8.0",
51
+ "eslint-config-prettier": "8.9.0",
52
52
  "eslint-plugin-budapestian": "5.0.1",
53
53
  "eslint-plugin-eslint-comments": "3.2.0",
54
- "eslint-plugin-import": "2.27.5",
54
+ "eslint-plugin-import": "2.28.0",
55
55
  "eslint-plugin-mocha": "10.1.0",
56
56
  "eslint-plugin-node": "11.1.0",
57
57
  "eslint-plugin-security": "1.7.1",
58
- "eslint-plugin-unicorn": "47.0.0",
58
+ "eslint-plugin-unicorn": "48.0.1",
59
59
  "npm-run-all": "4.1.5",
60
60
  "prettier": "3.0.0",
61
61
  "ts-node": "10.9.1",
@@ -79,8 +79,8 @@
79
79
  "depcruise:graph": "depcruise src types --include-only '^(dist|src|types)' --output-type dot | dot -T svg | tee docs/dependency-graph.svg | depcruise-wrap-stream-in-html > docs/dependency-graph.html",
80
80
  "depcruise:graph:archi": "depcruise src --include-only '^(dist|src|types)' --output-type archi | dot -T svg | depcruise-wrap-stream-in-html > docs/high-level-dependency-graph.html",
81
81
  "depcruise:graph:dev": "depcruise dist src types --include-only '^(dist|src|types)' --prefix vscode://file/$(pwd)/ --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
82
- "depcruise:graph:diff:dev": "depcruise dist src types --include-only '^(dist|src|types)' --highlight \"$(node dist/esm/cli.js main -T regex)\" --prefix vscode://file/$(pwd)/ --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
83
- "depcruise:graph:diff:mermaid": "depcruise dist src types --include-only '^(dist|src|types)' --output-type mermaid --output-to - --highlight \"$(node dist/esm/cli.js $SHA -T regex)\"",
82
+ "depcruise:graph:diff:dev": "depcruise dist src types --include-only '^(dist|src|types)' --highlight \"$(node dist/cli.js main -T regex)\" --prefix vscode://file/$(pwd)/ --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
83
+ "depcruise:graph:diff:mermaid": "depcruise dist src types --include-only '^(dist|src|types)' --output-type mermaid --output-to - --highlight \"$(node dist/cli.js $SHA -T regex)\"",
84
84
  "depcruise:html": "depcruise src types --progress --output-type err-html --output-to dependency-violation-report.html",
85
85
  "depcruise:text": "depcruise src types --progress --output-type text",
86
86
  "depcruise:focus": "depcruise src types --progress --output-type text --focus",
@@ -1 +0,0 @@
1
- export const VERSION = "0.12.0";
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes