Skip to content

Commit b4b7884

Browse files
committedOct 9, 2020
Fix CI to correctly use the right tslib in webpack 5
1 parent 9da1f4f commit b4b7884

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎test/rollup-modules/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
import { __awaiter } from "tslib";
1+
import { __awaiter } from "../../";
22
if (typeof __awaiter !== "function") throw new Error("Missing expected helper __awaiter");

‎test/webpack-5-modules/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"test": "webpack && node build/main.js"
44
},
55
"devDependencies": {
6+
"tslib": "file:../..",
67
"webpack": "5.0.0-rc.4",
78
"webpack-cli": "3.3.12"
89
}

0 commit comments

Comments
 (0)
Please sign in to comment.