@revealui/cli 0.3.1 → 0.3.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/dist/cli.js +2 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/templates/basic-blog/package.json +6 -6
- package/templates/basic-blog/tsconfig.json +25 -2
- package/templates/e-commerce/package.json +6 -6
- package/templates/e-commerce/tsconfig.json +25 -2
- package/templates/portfolio/package.json +6 -6
- package/templates/portfolio/tsconfig.json +25 -2
- package/templates/starter/package.json +6 -6
- package/templates/starter/tsconfig.json +25 -2
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
33
|
"typescript": "^5.9.0",
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
33
|
"typescript": "^5.9.0",
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
33
|
"typescript": "^5.9.0",
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
33
|
"typescript": "^5.9.0",
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|