create-rari-app 0.2.14 → 0.2.15

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.2.14",
4
+ "version": "0.2.15",
5
5
  "description": "Create Runtime Accelerated Rendering Infrastructure (Rari) applications with no build configuration",
6
6
  "author": "Ryan Skinner",
7
7
  "license": "MIT",
@@ -15,8 +15,6 @@
15
15
  "deploy:railway": "rari deploy railway",
16
16
  "deploy:render": "rari deploy render",
17
17
  "clean": "rm -rf dist",
18
- "lint": "oxlint && eslint",
19
- "lint:fix": "oxlint --fix && eslint --fix",
20
18
  "typecheck": "tsgo"
21
19
  },
22
20
  "dependencies": {
@@ -30,9 +28,6 @@
30
28
  "@types/react": "^19.2.7",
31
29
  "@types/react-dom": "^19.2.3",
32
30
  "@typescript/native-preview": "^7.0.0-dev.20260102.1",
33
- "@vitejs/plugin-react": "^5.1.2",
34
- "eslint": "^9.39.2",
35
- "oxlint": "^1.36.0",
36
31
  "rolldown-vite": "^7.3.0",
37
32
  "tailwindcss": "^4.1.18"
38
33
  }
@@ -1,10 +1,5 @@
1
1
  [build]
2
- builder = "NIXPACKS"
3
- buildCommand = "pnpm run build"
4
- nixpacksPlan = { phases = { setup = { nixPkgs = [
5
- "nodejs_20",
6
- "pnpm"
7
- ] } } }
2
+ builder = "RAILPACK"
8
3
 
9
4
  [deploy]
10
5
  startCommand = "pnpm start"
@@ -1,6 +1,6 @@
1
1
  import type { PageProps } from 'rari/client'
2
- import ServerTime from '../components/ServerTime'
3
- import Welcome from '../components/Welcome'
2
+ import ServerTime from '@/components/ServerTime'
3
+ import Welcome from '@/components/Welcome'
4
4
 
5
5
  export default function HomePage(_params: PageProps) {
6
6
  return (
@@ -1,11 +1,10 @@
1
1
  import path from 'node:path'
2
2
  import tailwindcss from '@tailwindcss/vite'
3
- import react from '@vitejs/plugin-react'
4
3
  import { rari, rariRouter } from 'rari/vite'
5
4
  import { defineConfig } from 'rolldown-vite'
6
5
 
7
6
  export default defineConfig({
8
- plugins: [rari(), rariRouter(), react(), tailwindcss()],
7
+ plugins: [rari(), rariRouter(), tailwindcss()],
9
8
  resolve: {
10
9
  alias: {
11
10
  '@': path.resolve(__dirname, 'src'),