Skip to content

Commit

Permalink
build(npm): Fix test project hoisting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nonara committed Feb 19, 2024
1 parent de794e1 commit cb0d1e3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
16 changes: 11 additions & 5 deletions test/package.json
Expand Up @@ -9,9 +9,9 @@
"ts-expose-internals": "^4.1.2",
"typescript-three": "npm:typescript@3.6.5",
"typescript-four-seven": "npm:typescript@4.7.4",
"typescript": "latest",
"ts-patch": "link:../node_modules/ts-patch",
"ts-node": "link:../node_modues/ts-node",
"typescript": "latest",
"ts-patch": "latest",
"tsp1": "npm:ts-patch@1.*.*",
"tsp2": "npm:ts-patch@2.*.*",
"@nrwl/cli": "^15.0.0",
Expand All @@ -21,7 +21,13 @@
"nx": "^15.0.0",
"strip-ansi": "^6.0.1"
},
"workspaces": [
"projects/*"
]
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/semver/*",
"**/ts-patch/*"
]
}
}
18 changes: 11 additions & 7 deletions test/yarn.lock
Expand Up @@ -6148,9 +6148,17 @@ ts-node@10.9.1:
version "0.0.0"
uid ""

"ts-patch@link:../node_modules/ts-patch":
version "0.0.0"
uid ""
ts-patch@latest:
version "3.1.2"
resolved "https://registry.yarnpkg.com/ts-patch/-/ts-patch-3.1.2.tgz#9d4832eca34ed0b9eb1f8456cb00c941f50b442b"
integrity sha512-n58F5AqjUMdp9RAKq+E1YBkmONltPVbt1nN+wrmZXoYZek6QcvaTuqvKMhYhr5BxtC53kD/exxIPA1cP1RQxsA==
dependencies:
chalk "^4.1.2"
global-prefix "^3.0.0"
minimist "^1.2.8"
resolve "^1.22.2"
semver "^7.5.4"
strip-ansi "^6.0.1"

tsconfig-paths-webpack-plugin@4.0.0:
version "4.0.0"
Expand Down Expand Up @@ -6239,10 +6247,6 @@ typed-assert@^1.0.8:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.5.tgz#dae20114a7b4ff4bd642db9c8c699f2953e8bbdb"
integrity sha512-BEjlc0Z06ORZKbtcxGrIvvwYs5hAnuo6TKdNFL55frVDlB+na3z5bsLhFaIxmT+dPWgBIjMo6aNnTOgHHmHgiQ==

"typescript-transform-paths@link:..":
version "0.0.0"
uid ""

"typescript-transform-paths@link:../src":
version "0.0.0"
uid ""
Expand Down

0 comments on commit cb0d1e3

Please sign in to comment.