create-bw-app 0.18.2 → 0.18.3
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
package/src/constants.mjs
CHANGED
|
@@ -136,7 +136,6 @@ export const PLATFORM_STARTER_FILES = [
|
|
|
136
136
|
"app/(auth)/auth-provider.tsx",
|
|
137
137
|
"app/(auth)/layout.tsx",
|
|
138
138
|
"app/(auth)/login/page.tsx",
|
|
139
|
-
"app/(auth)/signup/page.tsx",
|
|
140
139
|
"app/(auth)/forgot-password/page.tsx",
|
|
141
140
|
"app/(auth)/reset-password/page.tsx",
|
|
142
141
|
"app/(auth)/auth/post-login/page.tsx",
|
|
@@ -166,14 +165,14 @@ export const PLATFORM_STARTER_FILES = [
|
|
|
166
165
|
];
|
|
167
166
|
|
|
168
167
|
export const APP_DEPENDENCY_DEFAULTS = {
|
|
169
|
-
"@brightweblabs/app-shell": "^0.7.
|
|
170
|
-
"@brightweblabs/core-auth": "^0.7.
|
|
168
|
+
"@brightweblabs/app-shell": "^0.7.2",
|
|
169
|
+
"@brightweblabs/core-auth": "^0.7.2",
|
|
171
170
|
"@brightweblabs/infra": "^0.4.0",
|
|
172
|
-
"@brightweblabs/module-admin": "^0.5.
|
|
173
|
-
"@brightweblabs/module-crm": "^0.9.
|
|
174
|
-
"@brightweblabs/module-marketing": "^0.2.
|
|
175
|
-
"@brightweblabs/module-orgs": "^0.3.
|
|
176
|
-
"@brightweblabs/module-projects": "^0.8.
|
|
171
|
+
"@brightweblabs/module-admin": "^0.5.8",
|
|
172
|
+
"@brightweblabs/module-crm": "^0.9.3",
|
|
173
|
+
"@brightweblabs/module-marketing": "^0.2.7",
|
|
174
|
+
"@brightweblabs/module-orgs": "^0.3.8",
|
|
175
|
+
"@brightweblabs/module-projects": "^0.8.1",
|
|
177
176
|
"@brightweblabs/theme": "^0.5.0",
|
|
178
177
|
"@brightweblabs/ui": "^1.1.1",
|
|
179
178
|
"geist": "1.7.2",
|
package/src/generator.mjs
CHANGED
|
@@ -109,6 +109,7 @@ export function ShellLayoutClient({
|
|
|
109
109
|
<MobileNav
|
|
110
110
|
toolsExpanded={isGroupOpen(config.toolsSection.key)}
|
|
111
111
|
visiblePrimaryNav={config.primaryNav}
|
|
112
|
+
adminNavItem={viewer.isAdmin ? config.adminNavItem : null}
|
|
112
113
|
visibleToolNav={config.toolsSection.items}
|
|
113
114
|
navGroups={config.moduleGroups}
|
|
114
115
|
isNavItemActive={isActive}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { SignupPage as default } from "@brightweblabs/core-auth/ui";
|