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 CHANGED
@@ -206,10 +206,7 @@ cd my-project
206
206
  # 環境変数を設定(重要!)
207
207
  pnpm env:update
208
208
 
209
- # PostgreSQLを起動
210
- docker-compose up -d postgres
211
-
212
- # 開発サーバーを起動
209
+ # 開発サーバーを起動(PostgreSQLも自動起動)
213
210
  pnpm dev
214
211
  ```
215
212
 
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(" docker-compose up -d postgres"));
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",