@alexaegis/turbowatch 0.8.4 → 0.9.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/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexaegis/turbowatch",
|
|
3
3
|
"description": "A turbowatch configuration to watch local dependencies through node_modules",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.9.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"archetype": {
|
|
@@ -55,25 +55,23 @@
|
|
|
55
55
|
"./readme": "./readme.md"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@alexaegis/common": "^0.7.
|
|
59
|
-
"@alexaegis/fs": "^0.7.
|
|
60
|
-
"@alexaegis/workspace-tools": "^0.7.
|
|
58
|
+
"@alexaegis/common": "^0.7.3",
|
|
59
|
+
"@alexaegis/fs": "^0.7.3",
|
|
60
|
+
"@alexaegis/workspace-tools": "^0.7.3"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@alexaegis/eslint-config-vitest": "^0.
|
|
64
|
-
"@alexaegis/ts": "^0.
|
|
65
|
-
"@alexaegis/vite": "^0.
|
|
66
|
-
"@alexaegis/vitest": "^0.
|
|
67
|
-
"@types/node": "^20.
|
|
63
|
+
"@alexaegis/eslint-config-vitest": "^0.9.0",
|
|
64
|
+
"@alexaegis/ts": "^0.9.0",
|
|
65
|
+
"@alexaegis/vite": "^0.9.0",
|
|
66
|
+
"@alexaegis/vitest": "^0.9.0",
|
|
67
|
+
"@types/node": "^20.10.1",
|
|
68
68
|
"publint": "^0.2.5",
|
|
69
69
|
"turbowatch": "^2.29.4",
|
|
70
|
-
"typescript": "^5.
|
|
71
|
-
"vite": "^
|
|
70
|
+
"typescript": "^5.3.2",
|
|
71
|
+
"vite": "^5.0.4",
|
|
72
72
|
"vitest": "^0.34.6"
|
|
73
73
|
},
|
|
74
74
|
"scripts": {
|
|
75
|
-
"build": "turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
76
|
-
"build-lib_": "vite build",
|
|
77
75
|
"lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
78
76
|
"lint:depcheck_": "depcheck",
|
|
79
77
|
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
@@ -86,11 +84,13 @@
|
|
|
86
84
|
"lint:tsc_": "tsc --noEmit",
|
|
87
85
|
"publint": "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
88
86
|
"publint_": "publint dist",
|
|
89
|
-
"all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
90
|
-
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
91
|
-
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
|
|
92
87
|
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
93
88
|
"test_": "vitest --passWithNoTests --coverage --run",
|
|
94
|
-
"test:watch": "vitest --passWithNoTests --coverage"
|
|
89
|
+
"test:watch": "vitest --passWithNoTests --coverage",
|
|
90
|
+
"all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
91
|
+
"build": "turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
92
|
+
"build-lib_": "vite build",
|
|
93
|
+
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/turbowatch",
|
|
94
|
+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write ."
|
|
95
95
|
}
|
|
96
96
|
}
|