Skip to content

Commit c4b7bfb

Browse files
committed
try yarn resolutions to fix wrong version of solid-js being installed when in the lume repo and using yarn for bootstrap. yarnpkg/berry#5948
1 parent d9ff2de commit c4b7bfb

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,17 @@
1515
"@babel/runtime": "^7.15.4",
1616
"@lume/element": "^0.6.0",
1717
"@tweenjs/tween.js": "^18.6.4",
18-
"lume": "^0.3.0-alpha.9",
19-
"meteor-node-stubs": "^1.0.0"
18+
"lume": "0.3.0-alpha.9",
19+
"meteor-node-stubs": "^1.0.0",
20+
"solid-js": "1.4.x"
21+
},
22+
"// overrides for npm": "",
23+
"overrides": {
24+
"solid-js": "$solid-js"
25+
},
26+
"// overrides for yarn": "",
27+
"resolutions": {
28+
"solid-js": "1.4.8"
2029
},
2130
"devDependencies": {
2231
"@babel/core": "^7.11.6",

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"compilerOptions": {
44
"checkJs": true,
55
"declaration": false,
6+
"declarationMap": false,
67
"rootDir": "./",
78
"jsxImportSource": "@lume/element"
89
},

0 commit comments

Comments
 (0)