@tinyrack/dotweave 0.39.23 → 0.39.32
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 +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinyrack/dotweave",
|
|
3
|
-
"version": "0.39.
|
|
3
|
+
"version": "0.39.32",
|
|
4
4
|
"description": "A personal CLI tool for git-backed configuration sync.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,16 +58,17 @@
|
|
|
58
58
|
"typescript": "^6.0.2",
|
|
59
59
|
"vite": "^7.3.1",
|
|
60
60
|
"vitest": "^4.1.1",
|
|
61
|
-
"node-gyp": "^12.2.0"
|
|
61
|
+
"node-gyp": "^12.2.0",
|
|
62
|
+
"@tinyrack/dotweave-tools": "1.0.0"
|
|
62
63
|
},
|
|
63
64
|
"scripts": {
|
|
64
65
|
"dev": "tsc -p tsconfig.build.json --watch",
|
|
65
66
|
"build": "tsc -p tsconfig.build.json",
|
|
66
67
|
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
67
68
|
"prebuild": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
68
|
-
"sea:bundle": "
|
|
69
|
-
"sea:build": "
|
|
70
|
-
"sea:smoke": "
|
|
69
|
+
"sea:bundle": "dotweave-tools sea build --bundle-only",
|
|
70
|
+
"sea:build": "dotweave-tools sea build",
|
|
71
|
+
"sea:smoke": "dotweave-tools sea smoke --skip-build",
|
|
71
72
|
"start": "node dist/index.js",
|
|
72
73
|
"typecheck": "tsc -p tsconfig.json",
|
|
73
74
|
"test": "vitest run",
|
|
@@ -76,8 +77,8 @@
|
|
|
76
77
|
"check": "pnpm run typecheck && biome check . && pnpm run test",
|
|
77
78
|
"check:fix": "biome check --write .",
|
|
78
79
|
"format": "biome format --write .",
|
|
79
|
-
"release:patch": "
|
|
80
|
-
"release:minor": "
|
|
81
|
-
"release:major": "
|
|
80
|
+
"release:patch": "dotweave-tools release patch",
|
|
81
|
+
"release:minor": "dotweave-tools release minor",
|
|
82
|
+
"release:major": "dotweave-tools release major"
|
|
82
83
|
}
|
|
83
84
|
}
|