Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8a71360

Browse files
committedJan 25, 2025··
feat: update dependencies
1 parent 164ae7d commit 8a71360

File tree

12 files changed

+2277
-2679
lines changed

12 files changed

+2277
-2679
lines changed
 

‎.github/PULL_REQUEST_TEMPLATE.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
Please include a concise summary of the change with the relevant context and main highlights:
1515

16-
- [ ] What I've done 1
17-
- [ ] What I've done 2...
16+
- [ ] What I've done 1
17+
- [ ] What I've done 2...
1818

1919
## Screenshots
2020

@@ -24,6 +24,6 @@ Please include a concise summary of the change with the relevant context and mai
2424

2525
## Resources
2626

27-
- Issue (GitHub, ...)
28-
- Specification (ADRs, RFCs, ...)
29-
- ...
27+
- Issue (GitHub, ...)
28+
- Specification (ADRs, RFCs, ...)
29+
- ...

‎.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22.11.0
1+
v22.13.1

‎examples/multiple-exports/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
},
2323
"dependencies": {
2424
"picospinner": "^2.0.0",
25-
"react": "^18.3.1",
26-
"react-dom": "^18.3.1"
25+
"react": "^19.0.0",
26+
"react-dom": "^19.0.0"
2727
},
2828
"devDependencies": {
2929
"quickbundle": "workspace:*"

‎examples/multiple-standalones/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"picospinner": "^2.0.0"
1818
},
1919
"devDependencies": {
20-
"quickbundle": "workspace:*",
21-
"@types/node": "22.9.0"
20+
"@types/node": "22.10.10",
21+
"quickbundle": "workspace:*"
2222
}
2323
}

‎examples/single-standalone/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"picospinner": "^2.0.0"
1515
},
1616
"devDependencies": {
17-
"quickbundle": "workspace:*",
18-
"@types/node": "22.9.0"
17+
"@types/node": "22.10.10",
18+
"quickbundle": "workspace:*"
1919
}
2020
}

‎examples/ts-multiple-exports/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
},
2525
"dependencies": {
2626
"picospinner": "^2.0.0",
27-
"react": "^18.3.1",
28-
"react-dom": "^18.3.1"
27+
"react": "^19.0.0",
28+
"react-dom": "^19.0.0"
2929
},
3030
"devDependencies": {
31-
"quickbundle": "workspace:*",
32-
"@types/node": "22.9.0",
33-
"@types/react": "18.3.12",
34-
"@types/react-dom": "18.3.1"
31+
"@types/node": "22.10.10",
32+
"@types/react": "19.0.8",
33+
"@types/react-dom": "19.0.3",
34+
"quickbundle": "workspace:*"
3535
}
3636
}

‎examples/ts-single-export/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"picospinner": "^2.0.0"
1818
},
1919
"devDependencies": {
20-
"quickbundle": "workspace:*",
21-
"@types/node": "22.9.0"
20+
"@types/node": "22.10.10",
21+
"quickbundle": "workspace:*"
2222
}
2323
}

‎package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
22
"name": "root",
3-
"private": true,
43
"version": "0.0.0",
4+
"private": true,
55
"type": "module",
66
"scripts": {
7-
"prepare": "stack install && pnpm --filter quickbundle build",
8-
"clean": "stack clean",
7+
"build": "stack build",
98
"check": "stack check",
9+
"clean": "stack clean",
1010
"fix": "stack fix",
11-
"start": "stack start",
12-
"build": "stack build",
13-
"watch": "stack watch",
14-
"test": "stack test",
11+
"install": "stack install && pnpm --filter quickbundle build",
1512
"release:log": "stack release --log",
13+
"release:publish": "stack release --publish",
1614
"release:version": "stack release --tag",
17-
"release:publish": "stack release --publish"
15+
"start": "stack start",
16+
"test": "stack test",
17+
"watch": "stack watch"
1818
},
19-
"packageManager": "pnpm@9.13.2",
19+
"prettier": "@adbayb/stack/prettier",
20+
"devDependencies": {
21+
"@adbayb/stack": "2.16.0"
22+
},
23+
"packageManager": "pnpm@9.15.4",
2024
"engines": {
2125
"node": ">=22.0.0",
22-
"pnpm": ">=9.0.0",
2326
"npm": "please-use-pnpm",
27+
"pnpm": ">=9.0.0",
2428
"yarn": "please-use-pnpm"
25-
},
26-
"prettier": "@adbayb/stack/prettier",
27-
"devDependencies": {
28-
"@adbayb/stack": "2.8.0"
2929
}
3030
}

0 commit comments

Comments
 (0)
Please sign in to comment.