create-rari-app 0.3.0 → 0.3.2

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-rari-app",
3
3
  "type": "module",
4
- "version": "0.3.0",
4
+ "version": "0.3.2",
5
5
  "description": "Create Runtime Accelerated Rendering Infrastructure (Rari) applications with no build configuration",
6
6
  "author": "Ryan Skinner",
7
7
  "license": "MIT",
@@ -50,10 +50,10 @@
50
50
  "picocolors": "^1.1.1"
51
51
  },
52
52
  "devDependencies": {
53
- "@types/node": "^25.0.3",
54
- "@typescript/native-preview": "^7.0.0-dev.20260107.1",
53
+ "@types/node": "^25.0.7",
54
+ "@typescript/native-preview": "^7.0.0-dev.20260112.1",
55
55
  "eslint": "^9.39.2",
56
- "oxlint": "^1.38.0",
56
+ "oxlint": "^1.39.0",
57
57
  "tsdown": "^0.18.4"
58
58
  }
59
59
  }
@@ -24,11 +24,11 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@tailwindcss/vite": "^4.1.18",
27
- "@types/node": "^25.0.3",
28
- "@types/react": "^19.2.7",
27
+ "@types/node": "^25.0.7",
28
+ "@types/react": "^19.2.8",
29
29
  "@types/react-dom": "^19.2.3",
30
- "@typescript/native-preview": "^7.0.0-dev.20260107.1",
31
- "rolldown-vite": "^7.3.0",
30
+ "@typescript/native-preview": "^7.0.0-dev.20260112.1",
31
+ "rolldown-vite": "^7.3.1",
32
32
  "tailwindcss": "^4.1.18"
33
33
  }
34
34
  }
@@ -1,4 +1,4 @@
1
- import type { PageProps } from 'rari/client'
1
+ import type { PageProps } from 'rari'
2
2
 
3
3
  export default function AboutPage(_params: PageProps) {
4
4
  return (
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable style/object-curly-spacing */
2
- import type { LayoutProps } from 'rari/client'
2
+ import type { LayoutProps } from 'rari'
3
3
 
4
4
  export default function RootLayout({ children }: LayoutProps) {
5
5
  return (
@@ -1,4 +1,4 @@
1
- import type { PageProps } from 'rari/client'
1
+ import type { PageProps } from 'rari'
2
2
  import ServerTime from '@/components/ServerTime'
3
3
  import Welcome from '@/components/Welcome'
4
4