watskeburt 0.12.2 → 2.0.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 +2 -2
- package/dist/version.js +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -7,8 +7,6 @@ Get changed files & their statuses since any git _revision_
|
|
|
7
7
|
A micro-lib to retrieve an array of file names that were changed since a
|
|
8
8
|
revision. Also sports a cli for use outside of JavaScript c.s.
|
|
9
9
|
|
|
10
|
-
- :warning: Interface is stable, but can can change until 1.0.0 is published :warning:
|
|
11
|
-
|
|
12
10
|
## why?
|
|
13
11
|
|
|
14
12
|
I needed something simple and robust to support some upcoming features in
|
|
@@ -103,6 +101,8 @@ Options:
|
|
|
103
101
|
|
|
104
102
|
## 🇳🇱 what does 'watskeburt' mean?
|
|
105
103
|
|
|
104
|
+
Wazzup.
|
|
105
|
+
|
|
106
106
|
_watskeburt_ is a fast pronunciation of the Dutch "wat is er gebeurd?"
|
|
107
107
|
(_what has happened?_) or "wat er is gebeurd" (_what has happened_). It's
|
|
108
108
|
also the title of a song by the Dutch band "De Jeugd van Tegenwoordig"
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "0.
|
|
1
|
+
export const VERSION = "2.0.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "watskeburt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "List files changed since a git revision",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"git",
|
|
@@ -42,37 +42,37 @@
|
|
|
42
42
|
"README.md"
|
|
43
43
|
],
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@types/node": "20.
|
|
46
|
-
"@typescript-eslint/eslint-plugin": "6.4
|
|
45
|
+
"@types/node": "20.8.2",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "6.7.4",
|
|
47
47
|
"c8": "8.0.1",
|
|
48
|
-
"dependency-cruiser": "
|
|
49
|
-
"eslint": "8.
|
|
48
|
+
"dependency-cruiser": "14.1.0",
|
|
49
|
+
"eslint": "8.50.0",
|
|
50
50
|
"eslint-config-moving-meadow": "4.0.2",
|
|
51
51
|
"eslint-config-prettier": "9.0.0",
|
|
52
52
|
"eslint-plugin-budapestian": "5.0.1",
|
|
53
53
|
"eslint-plugin-eslint-comments": "3.2.0",
|
|
54
54
|
"eslint-plugin-import": "2.28.1",
|
|
55
|
-
"eslint-plugin-mocha": "10.
|
|
55
|
+
"eslint-plugin-mocha": "10.2.0",
|
|
56
56
|
"eslint-plugin-node": "11.1.0",
|
|
57
57
|
"eslint-plugin-security": "1.7.1",
|
|
58
58
|
"eslint-plugin-unicorn": "48.0.1",
|
|
59
59
|
"npm-run-all": "4.1.5",
|
|
60
|
-
"prettier": "3.0.
|
|
61
|
-
"
|
|
62
|
-
"typescript": "5.
|
|
60
|
+
"prettier": "3.0.3",
|
|
61
|
+
"tsx": "3.13.0",
|
|
62
|
+
"typescript": "5.2.2",
|
|
63
63
|
"upem": "8.0.0"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
|
-
"node": "^
|
|
66
|
+
"node": "^18||>=20"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build": "npm-run-all --sequential build:clean build:version build:dist",
|
|
70
|
-
"build:version": "
|
|
70
|
+
"build:version": "tsx tools/get-version.ts > src/version.ts",
|
|
71
71
|
"build:clean": "rm -rf dist/*",
|
|
72
72
|
"build:dist": "tsc",
|
|
73
73
|
"check": "npm-run-all --parallel --aggregate-output lint depcruise test:cover",
|
|
74
74
|
"clean": "rm -rf dist",
|
|
75
|
-
"test": "
|
|
75
|
+
"test": "tsx --test-reporter ./tools/dot-with-summary.reporter.js --test src/*.spec.ts src/**/*.spec.ts",
|
|
76
76
|
"test:cover": "c8 npm test",
|
|
77
77
|
"depcruise": "depcruise dist src types",
|
|
78
78
|
"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",
|