Skip to content

Commit

Permalink
test: issue #6358
Browse files Browse the repository at this point in the history
  • Loading branch information
xc2 committed Apr 29, 2024
1 parent 2dd1dda commit 0275972
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import(/* webpackChunkName: "normal" */ "./normal");
import(/* webpackChunkName: "with.dot" */ "./with_dot");
import(/* webpackChunkName: "./sub/fold" */ "./sub_fold");
import(/* webpackChunkName: './sub/single' */ "./single_quote");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ console.log("123");
(self['webpackChunkwebpack'] = self['webpackChunkwebpack'] || []).push([["main"], {
"./index.js": (function (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
__webpack_require__.e(/* import() | normal */ "normal").then(__webpack_require__.t.bind(__webpack_require__, "./normal.js", 23));
__webpack_require__.e(/* import() | with.dot */ "with.dot").then(__webpack_require__.t.bind(__webpack_require__, "./with_dot.js", 23));
__webpack_require__.e(/* import() | ./sub/fold */ "./sub/fold").then(__webpack_require__.t.bind(__webpack_require__, "./sub_fold.js", 23));
__webpack_require__.e(/* import() | ./sub/single */ "./sub/single").then(__webpack_require__.t.bind(__webpack_require__, "./single_quote.js", 23));
__webpack_require__.e(/* import() | ./sub/other */ "./sub/other").then(__webpack_require__.t.bind(__webpack_require__, "./other.js", 23));
Expand Down Expand Up @@ -88,5 +89,14 @@ console.log("user (id)/page3");
console.log("user [id]/page2");
}),

}]);
```

```js title=with.dot.js
(self['webpackChunkwebpack'] = self['webpackChunkwebpack'] || []).push([["with.dot"], {
"./with_dot.js": (function () {
console.log("123");
}),

}]);
```
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("123");

0 comments on commit 0275972

Please sign in to comment.