virtual-code-owners 7.0.0 → 7.0.1
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/dist/version.js +1 -1
- package/package.json +3 -34
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "7.0.
|
|
1
|
+
export const VERSION = "7.0.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "virtual-code-owners",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "Makes your CODEOWNERS file liveable again",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "dist/run-cli.js",
|
|
@@ -10,25 +10,6 @@
|
|
|
10
10
|
"README.md",
|
|
11
11
|
"LICENSE"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "rm -rf dist && tsx tools/get-version.ts > src/version.ts && tsx tools/js-json.ts < src/virtual-teams.schema.json > src/team-map/virtual-teams.schema.ts && tsc && cp -f src/*.json dist/.",
|
|
15
|
-
"check": "npm run format && npm run build && npm run depcruise -- --no-progress && npm test",
|
|
16
|
-
"depcruise": "depcruise src tools",
|
|
17
|
-
"depcruise:graph": "depcruise src --include-only '^(src)' --output-type dot | dot -T svg | depcruise-wrap-stream-in-html > dependency-graph.html",
|
|
18
|
-
"depcruise:graph:dev": "depcruise src --prefix vscode://file/$(pwd)/ --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
|
|
19
|
-
"depcruise:graph:diff:dev": "depcruise src --prefix vscode://file/$(pwd)/ --output-type dot --reaches \"$(watskeburt $SHA -T regex)\"| dot -T svg | depcruise-wrap-stream-in-html | browser",
|
|
20
|
-
"depcruise:graph:diff:mermaid": "depcruise src tools --output-type mermaid --output-to - --reaches \"$(watskeburt $SHA -T regex)\"",
|
|
21
|
-
"depcruise:html": "depcruise src tools --output-type err-html --output-to dependency-violation-report.html",
|
|
22
|
-
"format": "prettier --log-level warn --write \"**/*.{md,ts,json,yml}\"",
|
|
23
|
-
"prepare": "husky install",
|
|
24
|
-
"scm:stage": "git add .",
|
|
25
|
-
"test": "c8 node --no-warnings --loader 'tsx' --test-reporter ./tools/dot-with-summary.reporter.js --test src/*.test.ts src/**/*.test.ts",
|
|
26
|
-
"update-dependencies": "npm run upem:update && npm run upem:install && npm run check",
|
|
27
|
-
"upem-outdated": "npm outdated --json --long | upem --dry-run",
|
|
28
|
-
"upem:install": "npm install",
|
|
29
|
-
"upem:update": "npm outdated --json --long | upem | pbcopy && pbpaste",
|
|
30
|
-
"version": "npm run build && npm run scm:stage"
|
|
31
|
-
},
|
|
32
13
|
"keywords": [
|
|
33
14
|
"CODEOWNERS"
|
|
34
15
|
],
|
|
@@ -37,23 +18,11 @@
|
|
|
37
18
|
"homepage": "https://github.com/sverweij/virtual-code-owners",
|
|
38
19
|
"repository": {
|
|
39
20
|
"type": "git",
|
|
40
|
-
"url": "git+https://github.com/sverweij/virtual-code-owners"
|
|
21
|
+
"url": "git+https://github.com/sverweij/virtual-code-owners.git"
|
|
41
22
|
},
|
|
42
23
|
"bugs": {
|
|
43
24
|
"url": "https://github.com/sverweij/virtual-code-owners/issues"
|
|
44
25
|
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@types/node": "20.8.6",
|
|
47
|
-
"c8": "8.0.1",
|
|
48
|
-
"dependency-cruiser": "14.1.1",
|
|
49
|
-
"husky": "8.0.3",
|
|
50
|
-
"lint-staged": "15.0.0",
|
|
51
|
-
"prettier": "3.0.3",
|
|
52
|
-
"tsx": "3.13.0",
|
|
53
|
-
"typescript": "5.2.2",
|
|
54
|
-
"upem": "9.0.2",
|
|
55
|
-
"watskeburt": "2.0.0"
|
|
56
|
-
},
|
|
57
26
|
"dependencies": {
|
|
58
27
|
"ajv": "8.12.0",
|
|
59
28
|
"yaml": "2.3.3"
|
|
@@ -61,4 +30,4 @@
|
|
|
61
30
|
"engines": {
|
|
62
31
|
"node": "^18.11.0||>=20.0.0"
|
|
63
32
|
}
|
|
64
|
-
}
|
|
33
|
+
}
|