Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: update
  • Loading branch information
cap-Bernardito committed Apr 29, 2021
commit 83d8ca3bad02d27b444767fc7258540272d7d3b4
1 change: 1 addition & 0 deletions src/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ export function pitch(request) {
);
return;
}

this.importModule(
`${this.resourcePath}.webpack[javascript/auto]!=!${request}`,
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ __webpack_require__.r(__webpack_exports__);
/******/
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
/******/ __webpack_require__.h = () => ("acd0bc1ae24d05fdac73")
/******/ __webpack_require__.h = () => ("619e4b98882ea3a2aba3")
/******/ })();
/******/
/******/ /* webpack/runtime/global */
Expand Down
3 changes: 2 additions & 1 deletion test/cases/new-url-with-public-path-auto/test.filter.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const webpack = require('webpack');

module.exports = () => webpack.version[0] !== '4';
module.exports = () =>
webpack.version[0] !== '4' && !process.env.EXPERIMENTAL_USE_IMPORT_MODULE;
3 changes: 2 additions & 1 deletion test/cases/new-url-with-public-path/test.filter.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const webpack = require('webpack');

module.exports = () => webpack.version[0] !== '4';
module.exports = () =>
webpack.version[0] !== '4' && !process.env.EXPERIMENTAL_USE_IMPORT_MODULE;