create-bw-app 0.24.3 → 0.24.5
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 +1 -1
- package/src/constants.mjs +9 -9
- package/src/update.mjs +1 -0
- package/src/upgrade.mjs +6 -1
- package/template/supabase/modules/projects/migrations/20260804120000_project_task_start_date.sql +12 -0
- package/template/supabase/modules/projects/migrations/20260804123000_project_start_date.sql +12 -0
package/package.json
CHANGED
package/src/constants.mjs
CHANGED
|
@@ -175,16 +175,16 @@ export const PLATFORM_STARTER_FILES = [
|
|
|
175
175
|
];
|
|
176
176
|
|
|
177
177
|
export const APP_DEPENDENCY_DEFAULTS = {
|
|
178
|
-
"@brightweblabs/app-shell": "^0.11.
|
|
179
|
-
"@brightweblabs/core-auth": "^0.10.
|
|
178
|
+
"@brightweblabs/app-shell": "^0.11.3",
|
|
179
|
+
"@brightweblabs/core-auth": "^0.10.3",
|
|
180
180
|
"@brightweblabs/infra": "^0.7.0",
|
|
181
|
-
"@brightweblabs/module-admin": "^0.8.
|
|
182
|
-
"@brightweblabs/module-crm": "^0.
|
|
183
|
-
"@brightweblabs/module-marketing": "^0.4.
|
|
184
|
-
"@brightweblabs/module-orgs": "^0.4.
|
|
185
|
-
"@brightweblabs/module-projects": "^0.
|
|
186
|
-
"@brightweblabs/theme": "^0.7.
|
|
187
|
-
"@brightweblabs/ui": "^1.4.
|
|
181
|
+
"@brightweblabs/module-admin": "^0.8.8",
|
|
182
|
+
"@brightweblabs/module-crm": "^0.15.0",
|
|
183
|
+
"@brightweblabs/module-marketing": "^0.4.3",
|
|
184
|
+
"@brightweblabs/module-orgs": "^0.4.3",
|
|
185
|
+
"@brightweblabs/module-projects": "^0.14.0",
|
|
186
|
+
"@brightweblabs/theme": "^0.7.4",
|
|
187
|
+
"@brightweblabs/ui": "^1.4.7",
|
|
188
188
|
"geist": "1.7.2",
|
|
189
189
|
"lucide-react": "^1.8.0",
|
|
190
190
|
"next": "^16.0.0",
|
package/src/update.mjs
CHANGED
|
@@ -612,6 +612,7 @@ export async function buildBrightwebAppUpdatePlan(argvOptions = {}, runtimeOptio
|
|
|
612
612
|
manifest,
|
|
613
613
|
installedModules,
|
|
614
614
|
installedBrightwebPackages: Array.from(installedBrightwebPackagesMap.keys()).sort(),
|
|
615
|
+
targetVersions: canonicalVersions,
|
|
615
616
|
packageUpdates: packageJsonUpdate.packageUpdates,
|
|
616
617
|
configFilesToWrite: fileWrites.filter((entry) => entry.type === "config").map((entry) => entry.relativePath),
|
|
617
618
|
starterFilesMissing: starterFilesMissing.map((entry) => entry.relativePath),
|
package/src/upgrade.mjs
CHANGED
|
@@ -33,6 +33,10 @@ export async function upgradeBrightwebApp(moduleKey, argvOptions = {}, runtimeOp
|
|
|
33
33
|
plan.starterFilesMissing = Array.from(new Set([...plan.starterFilesMissing, ...missing]));
|
|
34
34
|
|
|
35
35
|
const catalog = await loadModuleCatalog({ targetDir, workspaceRoot });
|
|
36
|
+
for (const entry of Object.values(catalog)) {
|
|
37
|
+
const targetVersion = plan.targetVersions?.[entry.packageName];
|
|
38
|
+
if (targetVersion) entry.version = cleanVersion(targetVersion) || entry.version;
|
|
39
|
+
}
|
|
36
40
|
for (const update of plan.packageUpdates) {
|
|
37
41
|
const key = Object.keys(catalog).find((candidate) => catalog[candidate].packageName === update.packageName);
|
|
38
42
|
if (key) catalog[key].version = cleanVersion(update.to) || catalog[key].version;
|
|
@@ -60,7 +64,8 @@ export async function upgradeBrightwebApp(moduleKey, argvOptions = {}, runtimeOp
|
|
|
60
64
|
await applyMigrationWrites(migrationPlan.writes);
|
|
61
65
|
appManifest.migrationCursor = migrationPlan.nextCursor;
|
|
62
66
|
for (const [key, entry] of Object.entries(appManifest.modules)) {
|
|
63
|
-
|
|
67
|
+
const packageName = catalog[key]?.packageName;
|
|
68
|
+
if (catalog[key]?.packageRoot || plan.targetVersions?.[packageName]) entry.version = catalog[key].version;
|
|
64
69
|
}
|
|
65
70
|
for (const write of plan.fileWrites) {
|
|
66
71
|
const relativePath = write.relativePath;
|
package/template/supabase/modules/projects/migrations/20260804120000_project_task_start_date.sql
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
ALTER TABLE public.project_tasks
|
|
2
|
+
ADD COLUMN IF NOT EXISTS start_date date;
|
|
3
|
+
|
|
4
|
+
ALTER TABLE public.project_tasks
|
|
5
|
+
DROP CONSTRAINT IF EXISTS project_tasks_date_range_check;
|
|
6
|
+
|
|
7
|
+
ALTER TABLE public.project_tasks
|
|
8
|
+
ADD CONSTRAINT project_tasks_date_range_check
|
|
9
|
+
CHECK (start_date IS NULL OR due_date IS NULL OR due_date >= start_date);
|
|
10
|
+
|
|
11
|
+
CREATE INDEX IF NOT EXISTS idx_project_tasks_start_date
|
|
12
|
+
ON public.project_tasks (start_date);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
ALTER TABLE public.projects
|
|
2
|
+
ADD COLUMN IF NOT EXISTS start_date date;
|
|
3
|
+
|
|
4
|
+
ALTER TABLE public.projects
|
|
5
|
+
DROP CONSTRAINT IF EXISTS projects_date_range_check;
|
|
6
|
+
|
|
7
|
+
ALTER TABLE public.projects
|
|
8
|
+
ADD CONSTRAINT projects_date_range_check
|
|
9
|
+
CHECK (start_date IS NULL OR target_date IS NULL OR target_date >= start_date);
|
|
10
|
+
|
|
11
|
+
CREATE INDEX IF NOT EXISTS idx_projects_start_date
|
|
12
|
+
ON public.projects(start_date);
|