Skip to content

Commit bb63bb3

Browse files
Brendonovichoscartbeaumontbrenelzkatywingsatilafassina
authored
Devinxi (#1942)
Co-authored-by: oscarbeaumont <[email protected]> Co-authored-by: Brenley Dueck <[email protected]> Co-authored-by: Katja Lutz <[email protected]> Co-authored-by: Atila Fassina <[email protected]>
1 parent 84ae719 commit bb63bb3

File tree

127 files changed

+10164
-20051
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+10164
-20051
lines changed

.github/workflows/cr.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ jobs:
3333
run: pnpm install --frozen-lockfile
3434

3535
- name: Build start
36-
run: pnpm run packages:build
36+
run: |
37+
pnpm run build
38+
# rewrite .ts exports to .js
39+
pnpm --filter='./packages/*' -c exec "echo \$(cat package.json | jq '.exports = .publishConfig.exports') > package.json"
3740
3841
- name: Release
39-
run: pnpm dlx [email protected] publish './packages/start' --template './examples/*' --compact
42+
run: |
43+
pnpm dlx [email protected] publish './packages/start' --template './examples/*' --compact

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,6 @@ vite.config.ts.timestamp*
5252

5353
# ignore cypress screenshots
5454
**/cypress/screenshots
55+
56+
.data
57+
tsconfig.tsbuildinfo

apps/fixtures/bare/app.config.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

apps/fixtures/bare/package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
"name": "fixture-bare",
33
"type": "module",
44
"scripts": {
5-
"dev": "vinxi dev",
6-
"build": "vinxi build",
7-
"start": "vinxi start"
5+
"dev": "vite dev",
6+
"build": "vite build"
87
},
98
"dependencies": {
10-
"@solidjs/start": "^1.1.0",
11-
"solid-js": "^1.9.5",
12-
"vinxi": "^0.5.7"
9+
"@solidjs/start": "workspace:*",
10+
"solid-js": "^1.9.9",
11+
"vite": "7.1.10"
1312
},
1413
"engines": {
1514
"node": ">=22"

apps/fixtures/bare/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"allowJs": true,
1111
"strict": true,
1212
"noEmit": true,
13-
"types": ["vinxi/types/client"],
1413
"isolatedModules": true,
1514
"paths": {
1615
"~/*": ["./src/*"]

apps/fixtures/bare/vite.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineConfig } from "vite";
2+
import { solidStart } from "../../../packages/start/src/config";
3+
import { nitroV2Plugin } from "../../../packages/start-nitro-v2-vite-plugin/src";
4+
5+
export default defineConfig({
6+
plugins: [solidStart(), nitroV2Plugin()],
7+
});

apps/fixtures/basic/app.config.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

apps/fixtures/basic/package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,15 @@
22
"name": "fixture-basic",
33
"type": "module",
44
"scripts": {
5-
"dev": "vinxi dev",
6-
"build": "vinxi build",
7-
"start": "vinxi start",
8-
"version": "vinxi version"
5+
"dev": "vite dev",
6+
"build": "vite build"
97
},
108
"dependencies": {
119
"@solidjs/meta": "^0.29.4",
1210
"@solidjs/router": "^0.15.0",
13-
"@solidjs/start": "^1.1.0",
14-
"solid-js": "^1.9.5",
15-
"vinxi": "^0.5.7"
11+
"@solidjs/start": "workspace:*",
12+
"solid-js": "^1.9.9",
13+
"vite": "7.1.10"
1614
},
1715
"engines": {
1816
"node": ">=22"

apps/fixtures/basic/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"allowJs": true,
1111
"strict": true,
1212
"noEmit": true,
13-
"types": ["vinxi/types/client"],
1413
"isolatedModules": true,
1514
"paths": {
1615
"~/*": ["./src/*"]

apps/fixtures/basic/vite.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineConfig } from "vite";
2+
import { solidStart } from "../../../packages/start/src/config";
3+
import { nitroV2Plugin } from "../../../packages/start-nitro-v2-vite-plugin/src";
4+
5+
export default defineConfig({
6+
plugins: [solidStart(), nitroV2Plugin()],
7+
});

0 commit comments

Comments
 (0)