Skip to content

Commit 1b8b14f

Browse files
authored
Merge pull request #805 from Lemoncode/feature/update-turborepo
Feature/update turborepo
2 parents e864866 + 6a333b0 commit 1b8b14f

File tree

66 files changed

+6356
-2163
lines changed

Some content is hidden

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

66 files changed

+6356
-2163
lines changed

07-cloud/04-turborepo/00-boilerplate/baratheon/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"start": "vite --open"
88
},
99
"dependencies": {
10-
"react": "^18.2.0",
11-
"react-dom": "^18.2.0"
10+
"react": "^19.0.0",
11+
"react-dom": "^19.0.0"
1212
},
1313
"devDependencies": {
14-
"@types/react": "^18.2.66",
15-
"@types/react-dom": "^18.2.22",
16-
"@vitejs/plugin-react": "^4.2.1",
17-
"typescript": "^5.4.2",
18-
"vite": "^5.1.6"
14+
"@types/react": "^19.0.10",
15+
"@types/react-dom": "^19.0.4",
16+
"@vitejs/plugin-react": "^4.3.4",
17+
"typescript": "^5.8.2",
18+
"vite": "^6.2.0"
1919
}
2020
}

07-cloud/04-turborepo/00-boilerplate/house-helpers/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
"name": "@my-org/house-helpers",
33
"version": "1.0.0",
44
"private": true,
5+
"sideEffects": false,
56
"author": "Lemoncode",
67
"license": "MIT",
7-
"types": "src/index.ts",
88
"type": "module",
9-
"main": "src/index.ts",
9+
"exports": {
10+
".": "./src/index.ts"
11+
},
1012
"devDependencies": {
11-
"typescript": "^5.4.2"
13+
"typescript": "^5.8.2"
1214
}
1315
}

07-cloud/04-turborepo/00-boilerplate/house-helpers/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"moduleResolution": "bundler",
66
"skipLibCheck": true,
77
"isolatedModules": true,
8+
"esModuleInterop": true,
89
"outDir": "dist",
910
"jsx": "react-jsx"
1011
},

07-cloud/04-turborepo/00-boilerplate/lannister/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"start": "vite --open"
88
},
99
"dependencies": {
10-
"react": "^18.2.0",
11-
"react-dom": "^18.2.0"
10+
"react": "^19.0.0",
11+
"react-dom": "^19.0.0"
1212
},
1313
"devDependencies": {
14-
"@types/react": "^18.2.66",
15-
"@types/react-dom": "^18.2.22",
16-
"@vitejs/plugin-react": "^4.2.1",
17-
"typescript": "^5.4.2",
18-
"vite": "^5.1.6"
14+
"@types/react": "^19.0.10",
15+
"@types/react-dom": "^19.0.4",
16+
"@vitejs/plugin-react": "^4.3.4",
17+
"typescript": "^5.8.2",
18+
"vite": "^6.2.0"
1919
}
2020
}

07-cloud/04-turborepo/00-boilerplate/motto-helpers/package.json

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,30 @@
22
"name": "@my-org/motto-helpers",
33
"version": "1.0.0",
44
"private": false,
5+
"sideEffects": false,
56
"author": "Lemoncode",
67
"license": "MIT",
78
"files": [
89
"dist"
910
],
1011
"type": "module",
11-
"module": "./dist/motto-helpers.js",
12-
"main": "./dist/motto-helpers.umd.cjs",
12+
"module": "./dist/index.js",
13+
"main": "./dist/index.umd.cjs",
1314
"types": "./dist/index.d.ts",
1415
"exports": {
1516
".": {
16-
"import": "./dist/motto-helpers.js",
17-
"require": "./dist/motto-helpers.umd.cjs",
18-
"types": "./dist/index.d.ts"
17+
"types": "./dist/index.d.ts",
18+
"import": "./dist/index.js",
19+
"require": "./dist/index.umd.cjs"
1920
}
2021
},
2122
"scripts": {
22-
"start": "run-p -l type-check:watch \"build -- --watch\"",
2323
"build": "npm run type-check && vite build",
24-
"type-check": "tsc --noEmit",
25-
"type-check:watch": "npm run type-check -- --watch --preserveWatchOutput"
24+
"type-check": "tsc --noEmit"
2625
},
2726
"devDependencies": {
28-
"npm-run-all": "^4.1.5",
29-
"typescript": "^5.4.2",
30-
"vite": "^5.1.6",
31-
"vite-plugin-dts": "^3.7.3"
27+
"typescript": "^5.8.2",
28+
"vite": "^6.2.0",
29+
"vite-plugin-dts": "^4.5.3"
3230
}
3331
}

07-cloud/04-turborepo/00-boilerplate/motto-helpers/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"moduleResolution": "bundler",
66
"skipLibCheck": true,
77
"isolatedModules": true,
8+
"esModuleInterop": true,
89
"outDir": "dist",
910
"jsx": "react-jsx"
1011
},

07-cloud/04-turborepo/00-boilerplate/motto-helpers/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export default defineConfig({
77
lib: {
88
entry: "src/index.ts",
99
name: "MottoHelpers",
10+
fileName: "index",
1011
},
1112
},
1213
});

07-cloud/04-turborepo/00-boilerplate/stark/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"start": "vite --open"
88
},
99
"dependencies": {
10-
"react": "^18.2.0",
11-
"react-dom": "^18.2.0"
10+
"react": "^19.0.0",
11+
"react-dom": "^19.0.0"
1212
},
1313
"devDependencies": {
14-
"@types/react": "^18.2.66",
15-
"@types/react-dom": "^18.2.22",
16-
"@vitejs/plugin-react": "^4.2.1",
17-
"typescript": "^5.4.2",
18-
"vite": "^5.1.6"
14+
"@types/react": "^19.0.10",
15+
"@types/react-dom": "^19.0.4",
16+
"@vitejs/plugin-react": "^4.3.4",
17+
"typescript": "^5.8.2",
18+
"vite": "^6.2.0"
1919
}
2020
}

07-cloud/04-turborepo/00-boilerplate/targaryen/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"start": "vite --open"
88
},
99
"dependencies": {
10-
"react": "^18.2.0",
11-
"react-dom": "^18.2.0"
10+
"react": "^19.0.0",
11+
"react-dom": "^19.0.0"
1212
},
1313
"devDependencies": {
14-
"@types/react": "^18.2.66",
15-
"@types/react-dom": "^18.2.22",
16-
"@vitejs/plugin-react": "^4.2.1",
17-
"typescript": "^5.4.2",
18-
"vite": "^5.1.6"
14+
"@types/react": "^19.0.10",
15+
"@types/react-dom": "^19.0.4",
16+
"@vitejs/plugin-react": "^4.3.4",
17+
"typescript": "^5.8.2",
18+
"vite": "^6.2.0"
1919
}
2020
}
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
node_modules
22
dist
3-
.turbo

0 commit comments

Comments
 (0)