create-newt-app 0.8.3 → 0.11.0

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import chalk from "chalk";
7
7
  // package.json
8
8
  var package_default = {
9
9
  name: "create-newt-app",
10
- version: "0.8.3",
10
+ version: "0.11.0",
11
11
  private: false,
12
12
  type: "module",
13
13
  bin: {
@@ -272,7 +272,7 @@ async function doInit(options) {
272
272
  templates.typescriptConfig,
273
273
  testing === "vitest" ? templates.testingVitest : templates.testingJest,
274
274
  ...deploymentModule ? [deploymentModule] : [],
275
- ...nestDiOnly ? [templates.nestDiOnly] : []
275
+ ...nestDiOnly ? [templates.nestDiOnly] : [templates.apiControllers]
276
276
  ];
277
277
  const name = group2.name ?? options.name ?? "";
278
278
  const taskBuilder = new TaskBuilder();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-newt-app",
3
- "version": "0.8.3",
3
+ "version": "0.11.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,7 +16,7 @@
16
16
  "ejs": "^3.1.10",
17
17
  "execa": "^9.6.0",
18
18
  "zod": "^3.25.76",
19
- "@newt-app/templates": "0.8.3"
19
+ "@newt-app/templates": "0.11.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/ejs": "^3.1.5",