create-alta-app 1.6.2 → 1.6.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.
Files changed (2) hide show
  1. package/index.mjs +8 -8
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -148,8 +148,8 @@ export default function Root() {
148
148
 
149
149
  fs.writeFileSync(
150
150
  path.join(appDir, 'components', 'layout', 'header.tsx'),
151
- `import { Separator } from '@altahq/design-system/components/ui/separator';
152
- import { Text } from '@altahq/design-system/components/ui/text';
151
+ `import { Separator } from '@alta/design-system/components/ui/separator';
152
+ import { Text } from '@alta/design-system/components/ui/text';
153
153
 
154
154
  export function Header() {
155
155
  return (
@@ -166,10 +166,10 @@ export function Header() {
166
166
 
167
167
  fs.writeFileSync(
168
168
  path.join(appDir, 'routes', 'app', 'dashboard.tsx'),
169
- `import { Card, CardContent, CardHeader, CardTitle } from '@altahq/design-system/components/ui/card';
170
- import { Text } from '@altahq/design-system/components/ui/text';
171
- import { Badge } from '@altahq/design-system/components/ui/badge';
172
- import { Separator } from '@altahq/design-system/components/ui/separator';
169
+ `import { Card, CardContent, CardHeader, CardTitle } from '@alta/design-system/components/ui/card';
170
+ import { Text } from '@alta/design-system/components/ui/text';
171
+ import { Badge } from '@alta/design-system/components/ui/badge';
172
+ import { Separator } from '@alta/design-system/components/ui/separator';
173
173
 
174
174
  export default function DashboardRoute() {
175
175
  return (
@@ -217,8 +217,8 @@ export default function DashboardRoute() {
217
217
 
218
218
  fs.writeFileSync(
219
219
  path.join(appDir, 'routes', 'app', 'settings.tsx'),
220
- `import { Card, CardContent, CardHeader, CardTitle } from '@altahq/design-system/components/ui/card';
221
- import { Text } from '@altahq/design-system/components/ui/text';
220
+ `import { Card, CardContent, CardHeader, CardTitle } from '@alta/design-system/components/ui/card';
221
+ import { Text } from '@alta/design-system/components/ui/text';
222
222
 
223
223
  export default function SettingsRoute() {
224
224
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-alta-app",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "Create a new Alta project",
5
5
  "bin": {
6
6
  "create-alta-app": "./index.mjs"