Skip to content

Commit ff95ec6

Browse files
committed
maint(build): Let screenful be processed by babel-loader. This is necessary since screenful 6.0.0.
1 parent 491d92e commit ff95ec6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ module.exports = {
99
"\\.(css|less|sass|scss)$": "identity-obj-proxy",
1010
},
1111
testEnvironment: "jsdom",
12-
transformIgnorePatterns: ["/node_modules/(?!@fullcalendar/*).+\\.[t|j]sx?$"],
12+
transformIgnorePatterns: ["/node_modules/(?!screenfull/*).+\\.[t|j]sx?$"],
1313
};

webpack/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = (env, argv, config, babel_include = []) => {
1616
// babel_include, like any packages within `@patternslib`, any other
1717
// `pat-*` and other packges which need babel processing so that node can
1818
// make sense of it when compiling.
19-
babel_include = new Set(["patternslib", "pat-.*", ...babel_include]);
19+
babel_include = new Set(["patternslib", "pat-.*", "screenfull", ...babel_include]);
2020
let babel_exclude = "";
2121
for (const it of babel_include) {
2222
babel_exclude += `(?!(${it})/)`;

0 commit comments

Comments
 (0)