create-rari-app 0.2.15 → 0.3.0
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/dist/index.mjs +0 -3
- package/package.json +3 -3
- package/templates/default/package.json +1 -1
- package/templates/default/tsconfig.json +20 -8
- package/templates/default/vite.config.ts +2 -2
- package/templates/default/src/vite-env.d.ts +0 -1
- package/templates/default/tsconfig.app.json +0 -34
- package/templates/default/tsconfig.node.json +0 -26
package/dist/index.mjs
CHANGED
|
@@ -103,13 +103,10 @@ async function copyTemplate(templatePath, projectPath, options) {
|
|
|
103
103
|
"package.json",
|
|
104
104
|
"vite.config.ts",
|
|
105
105
|
"tsconfig.json",
|
|
106
|
-
"tsconfig.app.json",
|
|
107
|
-
"tsconfig.node.json",
|
|
108
106
|
"index.html",
|
|
109
107
|
"README.md",
|
|
110
108
|
"railway.toml",
|
|
111
109
|
"render.yaml",
|
|
112
|
-
"src/vite-env.d.ts",
|
|
113
110
|
"src/app/globals.css",
|
|
114
111
|
"src/app/layout.tsx",
|
|
115
112
|
"src/app/page.tsx",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rari-app",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "Create Runtime Accelerated Rendering Infrastructure (Rari) applications with no build configuration",
|
|
6
6
|
"author": "Ryan Skinner",
|
|
7
7
|
"license": "MIT",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/node": "^25.0.3",
|
|
54
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
54
|
+
"@typescript/native-preview": "^7.0.0-dev.20260107.1",
|
|
55
55
|
"eslint": "^9.39.2",
|
|
56
|
-
"oxlint": "^1.
|
|
56
|
+
"oxlint": "^1.38.0",
|
|
57
57
|
"tsdown": "^0.18.4"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/node": "^25.0.3",
|
|
28
28
|
"@types/react": "^19.2.7",
|
|
29
29
|
"@types/react-dom": "^19.2.3",
|
|
30
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
|
30
|
+
"@typescript/native-preview": "^7.0.0-dev.20260107.1",
|
|
31
31
|
"rolldown-vite": "^7.3.0",
|
|
32
32
|
"tailwindcss": "^4.1.18"
|
|
33
33
|
}
|
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"jsx": "react-jsx",
|
|
5
|
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
6
|
+
"useDefineForClassFields": true,
|
|
7
|
+
"module": "ESNext",
|
|
8
|
+
"moduleResolution": "bundler",
|
|
9
|
+
"paths": {
|
|
10
|
+
"*": ["./*"],
|
|
11
|
+
"@/*": ["./src/*"]
|
|
5
12
|
},
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
"resolveJsonModule": true,
|
|
14
|
+
"allowImportingTsExtensions": true,
|
|
15
|
+
"strict": true,
|
|
16
|
+
"noFallthroughCasesInSwitch": true,
|
|
17
|
+
"noUnusedLocals": true,
|
|
18
|
+
"noUnusedParameters": true,
|
|
19
|
+
"noEmit": true,
|
|
20
|
+
"isolatedModules": true,
|
|
21
|
+
"skipLibCheck": true
|
|
22
|
+
}
|
|
11
23
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import path from 'node:path'
|
|
2
2
|
import tailwindcss from '@tailwindcss/vite'
|
|
3
|
-
import { rari
|
|
3
|
+
import { rari } from 'rari/vite'
|
|
4
4
|
import { defineConfig } from 'rolldown-vite'
|
|
5
5
|
|
|
6
6
|
export default defineConfig({
|
|
7
|
-
plugins: [rari(),
|
|
7
|
+
plugins: [rari(), tailwindcss()],
|
|
8
8
|
resolve: {
|
|
9
9
|
alias: {
|
|
10
10
|
'@': path.resolve(__dirname, 'src'),
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="vite/client" />
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
4
|
-
"target": "ES2020",
|
|
5
|
-
"jsx": "react-jsx",
|
|
6
|
-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
7
|
-
"moduleDetection": "force",
|
|
8
|
-
"useDefineForClassFields": true,
|
|
9
|
-
"module": "ESNext",
|
|
10
|
-
|
|
11
|
-
/* Bundler mode */
|
|
12
|
-
"moduleResolution": "bundler",
|
|
13
|
-
|
|
14
|
-
/* Path aliases */
|
|
15
|
-
"paths": {
|
|
16
|
-
"*": ["./*"],
|
|
17
|
-
"@/*": ["./src/*"]
|
|
18
|
-
},
|
|
19
|
-
|
|
20
|
-
"allowImportingTsExtensions": true,
|
|
21
|
-
/* Linting */
|
|
22
|
-
"strict": true,
|
|
23
|
-
"noFallthroughCasesInSwitch": true,
|
|
24
|
-
"noUncheckedIndexedAccess": true,
|
|
25
|
-
"noUnusedLocals": true,
|
|
26
|
-
"noUnusedParameters": true,
|
|
27
|
-
"noEmit": true,
|
|
28
|
-
"isolatedModules": true,
|
|
29
|
-
"skipLibCheck": true
|
|
30
|
-
},
|
|
31
|
-
"include": [
|
|
32
|
-
"src"
|
|
33
|
-
]
|
|
34
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
4
|
-
"target": "ES2022",
|
|
5
|
-
"lib": ["ES2023"],
|
|
6
|
-
"moduleDetection": "force",
|
|
7
|
-
"module": "ESNext",
|
|
8
|
-
|
|
9
|
-
/* Bundler mode */
|
|
10
|
-
"moduleResolution": "bundler",
|
|
11
|
-
"allowImportingTsExtensions": true,
|
|
12
|
-
|
|
13
|
-
/* Linting */
|
|
14
|
-
"strict": true,
|
|
15
|
-
"noFallthroughCasesInSwitch": true,
|
|
16
|
-
"noUncheckedIndexedAccess": true,
|
|
17
|
-
"noUnusedLocals": true,
|
|
18
|
-
"noUnusedParameters": true,
|
|
19
|
-
"noEmit": true,
|
|
20
|
-
"isolatedModules": true,
|
|
21
|
-
"skipLibCheck": true
|
|
22
|
-
},
|
|
23
|
-
"include": [
|
|
24
|
-
"vite.config.ts"
|
|
25
|
-
]
|
|
26
|
-
}
|