movementkit-cli 1.0.0 → 1.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/index.js +2 -2
- package/package.json +1 -2
package/dist/index.js
CHANGED
|
@@ -2912,7 +2912,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
2912
2912
|
// src/index.ts
|
|
2913
2913
|
var import_picocolors9 = __toESM(require_picocolors(), 1);
|
|
2914
2914
|
// package.json
|
|
2915
|
-
var version = "1.0.
|
|
2915
|
+
var version = "1.0.1";
|
|
2916
2916
|
|
|
2917
2917
|
// node_modules/@clack/core/dist/index.mjs
|
|
2918
2918
|
var import_sisteransi = __toESM(require_src(), 1);
|
|
@@ -3647,7 +3647,7 @@ function getKitSourcePath(kit) {
|
|
|
3647
3647
|
return path2.join(process.env.HOME || "", ".movementkit", "kits", kit);
|
|
3648
3648
|
}
|
|
3649
3649
|
async function copyKitFiles(sourceDir, targetPath) {
|
|
3650
|
-
const items = ["CLAUDE.md", "backend", "contracts", "docs", "frontend", "plans", "templates"];
|
|
3650
|
+
const items = [".claude", "CLAUDE.md", "backend", "contracts", "docs", "frontend", "plans", "templates"];
|
|
3651
3651
|
for (const item of items) {
|
|
3652
3652
|
const sourcePath = path2.join(sourceDir, item);
|
|
3653
3653
|
const destPath = path2.join(targetPath, item);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "movementkit-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CLI tool for bootstrapping and updating Movement Kit projects for Movement blockchain development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -72,4 +72,3 @@
|
|
|
72
72
|
"typescript": "^5.7.2"
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
|
-
|