@ciderjs/gasbombe 0.4.0 → 0.4.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/cli.cjs +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/index.cjs +0 -2
- package/dist/index.mjs +0 -2
- package/package.json +5 -5
package/dist/cli.cjs
CHANGED
package/dist/cli.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -229,8 +229,6 @@ async function generateProject({
|
|
|
229
229
|
const templateContent = await fs__default.readFile(templatePath, {
|
|
230
230
|
encoding: "utf-8"
|
|
231
231
|
});
|
|
232
|
-
console.log({ relativePath, ejsData });
|
|
233
|
-
console.warn(templateContent);
|
|
234
232
|
const renderedContent = ejs__default.render(templateContent, ejsData);
|
|
235
233
|
await fs__default.writeFile(outputPath, renderedContent, { encoding: "utf-8" });
|
|
236
234
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -230,8 +230,6 @@ async function generateProject({
|
|
|
230
230
|
const templateContent = await fs.readFile(templatePath, {
|
|
231
231
|
encoding: "utf-8"
|
|
232
232
|
});
|
|
233
|
-
console.log({ relativePath, ejsData });
|
|
234
|
-
console.warn(templateContent);
|
|
235
233
|
const renderedContent = ejs.render(templateContent, ejsData);
|
|
236
234
|
await fs.writeFile(outputPath, renderedContent, { encoding: "utf-8" });
|
|
237
235
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ciderjs/gasbombe",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "A TypeScript Project Generator for GoogleAppsScript, available as CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@types/js-yaml": "^4.0.9",
|
|
54
54
|
"@types/node": "catalog:",
|
|
55
55
|
"@typescript/native-preview": "7.0.0-dev.20260130.1",
|
|
56
|
-
"@vitest/coverage-v8": "
|
|
56
|
+
"@vitest/coverage-v8": "catalog:",
|
|
57
57
|
"commander": "^14.0.2",
|
|
58
58
|
"consola": "^3.4.2",
|
|
59
59
|
"ejs": "^4.0.1",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"vitest": "catalog:"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"@inquirer/prompts": "^7",
|
|
68
|
+
"@inquirer/prompts": "^7 || ^8",
|
|
69
69
|
"commander": "^14",
|
|
70
70
|
"consola": "^3",
|
|
71
|
-
"ejs": "^3",
|
|
72
|
-
"glob": "^11"
|
|
71
|
+
"ejs": "^3 || ^4",
|
|
72
|
+
"glob": "^11 || ^12 || ^13"
|
|
73
73
|
}
|
|
74
74
|
}
|