@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 CHANGED
@@ -11,7 +11,7 @@ require('consola');
11
11
  require('ejs');
12
12
  require('glob');
13
13
 
14
- const version = "0.4.0";
14
+ const version = "0.4.1";
15
15
 
16
16
  async function main() {
17
17
  const program = new commander.Command();
package/dist/cli.mjs CHANGED
@@ -9,7 +9,7 @@ import 'consola';
9
9
  import 'ejs';
10
10
  import 'glob';
11
11
 
12
- const version = "0.4.0";
12
+ const version = "0.4.1";
13
13
 
14
14
  async function main() {
15
15
  const program = new Command();
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.0",
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": "4.0.18",
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
  }