Skip to content
Open
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
3e2f284
Unique package names
cprecioso Sep 15, 2025
e094a41
Add workspaces
cprecioso Sep 15, 2025
dda141b
Snapshots
cprecioso Sep 16, 2025
1e8ad7d
Do not remove dependencies from the framework packages
cprecioso Sep 17, 2025
544a5a9
Add `package.json#workspaces` check
cprecioso Sep 17, 2025
7fd0290
Update snaphsot
cprecioso Sep 17, 2025
c1a1da0
Fix tests
cprecioso Sep 17, 2025
ac9bd17
Merge branch 'main' into cprecioso/npm-workspaces
cprecioso Sep 17, 2025
a7d71d7
Add changelog
cprecioso Sep 17, 2025
7a6441f
Add migration guide
cprecioso Sep 17, 2025
c3883b9
Fix example apps
cprecioso Sep 17, 2025
ca9bb9d
Format
cprecioso Sep 17, 2025
4ea1332
Update dockerfile
cprecioso Sep 17, 2025
25b7e1c
Update snaphsot
cprecioso Sep 17, 2025
ac348fe
Add ts-spec notice
cprecioso Sep 18, 2025
d4c84a9
Update migration guide
cprecioso Sep 18, 2025
636434b
Update package locks
cprecioso Sep 18, 2025
2173f34
Merge remote-tracking branch 'origin/main' into cprecioso/npm-workspaces
cprecioso Sep 18, 2025
063e210
Merge branch 'main' into cprecioso/npm-workspaces
cprecioso Sep 18, 2025
e267c5b
Update wasp-app-runner version
cprecioso Sep 18, 2025
641e6cd
Add SDK note
cprecioso Sep 18, 2025
6ef08f7
Add breaking change to changelog
cprecioso Sep 19, 2025
be519d2
Extract naming logic
cprecioso Sep 19, 2025
3bf16e6
Update package names
cprecioso Sep 19, 2025
2fdca35
Remove unused npm install for server and generator
cprecioso Sep 19, 2025
1a83660
Rename NpmWorkspaces
cprecioso Sep 19, 2025
99767ec
Fix comment
cprecioso Sep 19, 2025
f2100ff
Leftover rename
cprecioso Sep 19, 2025
820ed7a
Extract workspace list
cprecioso Sep 19, 2025
cca26c3
Merge branch 'main' into cprecioso/npm-workspaces
cprecioso Sep 19, 2025
94e673f
Fix
cprecioso Sep 19, 2025
a8b11c3
Fix Windows syntax
cprecioso Sep 19, 2025
800688c
Merge branch 'main' into cprecioso/npm-workspaces
cprecioso Sep 25, 2025
9454f77
Better render the paths in package.json
cprecioso Sep 25, 2025
beb8846
Update without path
cprecioso Sep 25, 2025
317c2f6
Update snaphsot
cprecioso Sep 25, 2025
256c4ac
Conditionally output .npmrc
cprecioso Sep 25, 2025
a931703
Update snaphsot
cprecioso Sep 25, 2025
4657896
Format
cprecioso Sep 25, 2025
95db53f
Laxer checking
cprecioso Sep 25, 2025
0a691b3
Merge branch 'main' into cprecioso/npm-workspaces
cprecioso Sep 29, 2025
13e891f
Review
cprecioso Oct 7, 2025
06d4bf3
Merge branch 'main' into cprecioso/npm-workspaces
cprecioso Oct 7, 2025
7385ad1
Refactor
cprecioso Oct 7, 2025
b005124
Review
cprecioso Oct 7, 2025
2b7dcf4
Review
cprecioso Oct 7, 2025
7ae0b78
Fixes
cprecioso Oct 7, 2025
aeba0c0
Format
cprecioso Oct 7, 2025
c34d38e
Fix tests
cprecioso Oct 7, 2025
45febe1
Update snaphsot
cprecioso Oct 7, 2025
3036606
Merge remote-tracking branch 'origin/main' into cprecioso/npm-workspaces
cprecioso Oct 9, 2025
3ed37c7
Update
cprecioso Oct 9, 2025
6a6868f
Merge remote-tracking branch 'origin/main' into cprecioso/npm-workspaces
cprecioso Oct 9, 2025
e776b53
Refactor workspace globs
cprecioso Oct 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,434 changes: 1,277 additions & 157 deletions examples/tutorials/TodoApp/package-lock.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion examples/tutorials/TodoApp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"name": "todo-app",
"type": "module",
"workspaces": [
".wasp/build/*",
".wasp/out/*"
],
"scripts": {
"test": "DEBUG=pw:webserver playwright test --config e2e-tests/"
},
Expand All @@ -13,7 +17,7 @@
"devDependencies": {
"@playwright/test": "1.51.1",
"@types/react": "^18.0.37",
"@wasp.sh/wasp-app-runner": "^0.0.7",
"@wasp.sh/wasp-app-runner": "^0.0.8",
"prisma": "5.19.1",
"typescript": "5.8.2",
"vite": "^7.0.6"
Expand Down
Loading
Loading