Skip to content

Commit

Permalink
Use file:../ paths for inter-project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
David Souther committed Dec 3, 2024
1 parent 3259df8 commit 50565dd
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
},
"devDependencies": {
"@davidsouther/jiffies": "^2.2.5",
"@nand2tetris/runner": "0.0.0",
"@nand2tetris/simulator": "0.0.0"
"@nand2tetris/runner": "file:../runner",
"@nand2tetris/simulator": "file:../simulator"
},
"dependencies": {
"@types/node": "^20.14.2",
Expand Down
4 changes: 2 additions & 2 deletions components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"devDependencies": {
"@davidsouther/jiffies": "^2.2.5",
"@monaco-editor/react": "^4.6.0",
"@nand2tetris/projects": "0.0.0",
"@nand2tetris/simulator": "0.0.0",
"@nand2tetris/projects": "file:../projects",
"@nand2tetris/simulator": "file:../simulator",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@types/error-cause": "^1.0.4",
Expand Down
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
],
"devDependencies": {
"@davidsouther/jiffies": "^2.0.6",
"@nand2tetris/simulator": "0.0.0",
"@nand2tetris/simulator": "file:../simulator",
"@types/error-cause": "^1.0.1",
"@types/node": "^16.11.41",
"@types/vscode": "^1.74.0",
Expand Down
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"dependencies": {
"@davidsouther/jiffies": "^2.2.5",
"@nand2tetris/projects": "0.0.0",
"@nand2tetris/projects": "file:../projects",
"@types/node": "^20.14.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions simulator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
},
"dependencies": {
"@davidsouther/jiffies": "^2.2.5",
"@nand2tetris/projects": "0.0.0",
"@nand2tetris/runner": "0.0.0",
"@nand2tetris/projects": "file:../projects",
"@nand2tetris/runner": "file:../runner",
"@types/node": "^20.14.2",
"ohm-js": "^17.1.0",
"rxjs": "^7.8.1"
Expand Down
6 changes: 3 additions & 3 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"@lingui/macro": "^4.11.1",
"@lingui/react": "^4.11.1",
"@monaco-editor/react": "^4.6.0",
"@nand2tetris/components": "0.0.0",
"@nand2tetris/projects": "0.0.0",
"@nand2tetris/simulator": "0.0.0",
"@nand2tetris/components": "file:../components",
"@nand2tetris/projects": "file:../projects",
"@nand2tetris/simulator": "file:../simulator",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
Expand Down

0 comments on commit 50565dd

Please sign in to comment.