@lumerahq/cli 0.9.2 → 0.9.3
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
CHANGED
|
@@ -118,7 +118,7 @@ async function main() {
|
|
|
118
118
|
break;
|
|
119
119
|
// Project
|
|
120
120
|
case "init":
|
|
121
|
-
await import("./init-
|
|
121
|
+
await import("./init-LVO3ZMG7.js").then((m) => m.init(args.slice(1)));
|
|
122
122
|
break;
|
|
123
123
|
case "status":
|
|
124
124
|
await import("./status-E4IHEUKO.js").then((m) => m.status(args.slice(1)));
|
|
@@ -48,6 +48,9 @@ function copyDir(src, dest, vars) {
|
|
|
48
48
|
if (destName.endsWith(".hbs")) {
|
|
49
49
|
destName = destName.slice(0, -4);
|
|
50
50
|
}
|
|
51
|
+
if (destName === "gitignore") {
|
|
52
|
+
destName = ".gitignore";
|
|
53
|
+
}
|
|
51
54
|
const destPath = join(dest, destName);
|
|
52
55
|
if (entry.isDirectory()) {
|
|
53
56
|
copyDir(srcPath, destPath, vars);
|
package/package.json
CHANGED