create-appraisejs 0.1.10-alpha.5 → 0.1.10-alpha.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-appraisejs",
3
- "version": "0.1.10-alpha.5",
3
+ "version": "0.1.10-alpha.6",
4
4
  "description": "Scaffold a new AppraiseJS app in your directory",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Hasnat Jamil",
@@ -1,5 +1,5 @@
1
1
  {
2
- "preparedAt": "2026-03-11T20:06:05.792Z",
3
- "inputHash": "b8bad3c969b8fcf0e41cfd1e6891ceed425ea5ac7848fef4e1e99f5498e8fb9b",
2
+ "preparedAt": "2026-03-11T20:27:10.706Z",
3
+ "inputHash": "b791f96c5cc19b18dc2263cb632bc664e4e0306d2a2e6d59d96d83d228a680b8",
4
4
  "databasePath": "prisma/dev.db"
5
5
  }
@@ -39,7 +39,6 @@ yarn-error.log*
39
39
  *.db
40
40
  *.sqlite
41
41
  *.sqlite3
42
- !packages/create-appraisejs/templates/default/prisma/dev.db
43
42
 
44
43
  # vercel
45
44
  .vercel
@@ -14,7 +14,7 @@
14
14
  "install-dependencies": "npm install --legacy-peer-deps",
15
15
  "setup-env": "npx tsx scripts/setup-env.ts",
16
16
  "migrate-db": "npx prisma migrate deploy",
17
- "setup": "npm run install-dependencies && npm run setup:db && npm run build:local",
17
+ "setup": "npm run install-dependencies && npm run setup:db && npm run build:local && npm run protect-seeded-files",
18
18
  "sync-features": "npx tsx scripts/regenerate-features.ts",
19
19
  "sync-features:dry-run": "npx tsx scripts/regenerate-features.ts --dry-run",
20
20
  "sync-locator-groups": "npx tsx scripts/sync-locator-groups.ts",
@@ -32,7 +32,8 @@
32
32
  "build:local": "npm run generate-db-client && npm run build:cucumber-runtime && next build",
33
33
  "generate-db-client": "npx prisma generate --schema prisma/schema.prisma",
34
34
  "setup:db": "npm run setup-env && npm run generate-db-client && npm run migrate-db && npm run sync-all",
35
- "setup:full": "npm run install-dependencies && npm run setup:db && npm run build:local",
35
+ "setup:full": "npm run install-dependencies && npm run setup:db && npm run build:local && npm run protect-seeded-files",
36
+ "protect-seeded-files": "npx tsx scripts/protect-seeded-files.ts",
36
37
  "appraisejs:setup": "npm run setup",
37
38
  "appraisejs:sync": "npm run sync-all"
38
39
  },
Binary file
@@ -154,9 +154,12 @@ rootPkg.scripts = {
154
154
  'generate-db-client': 'npx prisma generate --schema prisma/schema.prisma',
155
155
  'migrate-db': 'npx prisma migrate deploy',
156
156
  'install-playwright': 'npx playwright install',
157
- setup: 'npm run install-dependencies && npm run setup:db && npm run build:local',
157
+ setup:
158
+ 'npm run install-dependencies && npm run setup:db && npm run build:local && npm run protect-seeded-files',
158
159
  'setup:db': 'npm run setup-env && npm run generate-db-client && npm run migrate-db && npm run sync-all',
159
- 'setup:full': 'npm run install-dependencies && npm run setup:db && npm run build:local',
160
+ 'setup:full':
161
+ 'npm run install-dependencies && npm run setup:db && npm run build:local && npm run protect-seeded-files',
162
+ 'protect-seeded-files': 'npx tsx scripts/protect-seeded-files.ts',
160
163
  'appraisejs:setup': 'npm run setup',
161
164
  'appraisejs:sync': 'npm run sync-all',
162
165
  }