create-einja-app 0.2.13 → 0.2.15
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/README.md +1 -4
- package/dist/cli.js +8 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/default/.env.ci +1 -1
- package/templates/default/{.env.development → .env.develop} +2 -2
- package/templates/default/.env.preview +6 -0
- package/templates/default/.github/workflows/ci.yml +5 -30
- package/templates/default/.github/workflows/cleanup-neon-branches.yml +90 -0
- package/templates/default/.github/workflows/preview-db.yml +134 -0
- package/templates/default/AGENTS.md +14 -0
- package/templates/default/README.md +1 -1
- package/templates/default/gitignore +1 -1
- package/templates/default/package.json +2 -2
- package/templates/default/scripts/env-show.ts +1 -1
- package/templates/default/scripts/lib/env-common.ts +3 -9
- package/templates/default/scripts/worktree/dev.ts +5 -5
- package/templates/default/turbo.json +5 -0
- package/templates/default/.env.staging +0 -25
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -437,8 +437,7 @@ function printCompletionMessage(config) {
|
|
|
437
437
|
console.log();
|
|
438
438
|
console.log(chalk2.cyan(` cd ${config.projectName}`));
|
|
439
439
|
console.log(chalk2.cyan(" pnpm env:update # \u74B0\u5883\u5909\u6570\u3092\u8A2D\u5B9A"));
|
|
440
|
-
console.log(chalk2.cyan("
|
|
441
|
-
console.log(chalk2.cyan(" pnpm dev"));
|
|
440
|
+
console.log(chalk2.cyan(" pnpm dev # PostgreSQL\u8D77\u52D5 + \u958B\u767A\u30B5\u30FC\u30D0\u30FC\u8D77\u52D5"));
|
|
442
441
|
console.log();
|
|
443
442
|
console.log(
|
|
444
443
|
chalk2.yellow("\u26A0 \u30BB\u30AD\u30E5\u30EA\u30C6\u30A3: \u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u79D8\u5BC6\u9375\u3092\u305D\u306E\u307E\u307E\u4F7F\u7528\u3057\u306A\u3044\u3067\u304F\u3060\u3055\u3044")
|
|
@@ -1997,6 +1996,7 @@ var CATEGORY_PATTERNS = {
|
|
|
1997
1996
|
docker: ["Dockerfile*", "docker-compose*.yml", ".dockerignore"],
|
|
1998
1997
|
monorepo: ["turbo.json", "pnpm-workspace.yaml"],
|
|
1999
1998
|
"root-config": ["package.json", "tsconfig.json"],
|
|
1999
|
+
scripts: ["scripts/**"],
|
|
2000
2000
|
apps: ["apps/**"],
|
|
2001
2001
|
packages: ["packages/**"],
|
|
2002
2002
|
docs: ["README.md", "docs/**"]
|
|
@@ -2125,6 +2125,12 @@ var CATEGORY_CONFIGS = {
|
|
|
2125
2125
|
patterns: ["package.json", "tsconfig.json"],
|
|
2126
2126
|
defaultChecked: false
|
|
2127
2127
|
},
|
|
2128
|
+
scripts: {
|
|
2129
|
+
name: "\u30B9\u30AF\u30EA\u30D7\u30C8",
|
|
2130
|
+
description: "scripts/ \u914D\u4E0B",
|
|
2131
|
+
patterns: ["scripts/**"],
|
|
2132
|
+
defaultChecked: false
|
|
2133
|
+
},
|
|
2128
2134
|
apps: {
|
|
2129
2135
|
name: "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3",
|
|
2130
2136
|
description: "apps/ \u914D\u4E0B\uFF08\u6B21\u306E\u753B\u9762\u3067\u500B\u5225\u9078\u629E\uFF09",
|