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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-bw-app",
3
3
  "private": false,
4
- "version": "0.18.2",
4
+ "version": "0.18.3",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "create-bw-app": "bin/create-bw-app.mjs",
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.1",
170
- "@brightweblabs/core-auth": "^0.7.1",
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.7",
173
- "@brightweblabs/module-crm": "^0.9.2",
174
- "@brightweblabs/module-marketing": "^0.2.6",
175
- "@brightweblabs/module-orgs": "^0.3.7",
176
- "@brightweblabs/module-projects": "^0.8.0",
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
@@ -488,7 +488,6 @@ function createGitignore() {
488
488
  function getPlatformStarterRoutes(selectedModules) {
489
489
  return [
490
490
  "/login",
491
- "/signup",
492
491
  "/forgot-password",
493
492
  "/reset-password",
494
493
  "/account",
@@ -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";