create-newt-app 0.2.2 → 0.4.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 +4 -5
  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.2.2",
10
+ version: "0.4.0",
11
11
  private: false,
12
12
  type: "module",
13
13
  bin: {
@@ -228,8 +228,8 @@ async function doInit(options) {
228
228
  testing: () => p.select({
229
229
  message: "Testing framework?",
230
230
  options: [
231
- { value: "vitest", label: "Vitest" },
232
- { value: "jest", label: "Jest" }
231
+ { value: "jest", label: "Jest" },
232
+ { value: "vitest", label: "Vitest" }
233
233
  ],
234
234
  initialValue: "jest"
235
235
  })
@@ -301,8 +301,7 @@ async function doInit(options) {
301
301
  console.log("Next steps:");
302
302
  console.log();
303
303
  console.log(chalk.blue(` cd ${name}`));
304
- console.log(chalk.blue(` cp .env.example .env`));
305
- console.log(chalk.blue(` # fill in DATABASE_URL`));
304
+ console.log(chalk.blue(` # fill in DATABASE_URL in .env`));
306
305
  console.log(chalk.blue(` pnpm db:migrate`));
307
306
  console.log(chalk.blue(` pnpm dev`));
308
307
  console.log();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-newt-app",
3
- "version": "0.2.2",
3
+ "version": "0.4.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.2.2"
19
+ "@newt-app/templates": "0.4.0"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@types/ejs": "^3.1.5",