Skip to content

Commit fa2c16a

Browse files
committed
👕 add back eslint-disable-line on missing require
1 parent a1b917e commit fa2c16a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/dll-user/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ module.exports = {
1313
plugins: [
1414
new webpack.DllReferencePlugin({
1515
context: path.join(__dirname, "..", "dll"),
16-
manifest: require("../dll/js/alpha-manifest.json")
16+
manifest: require("../dll/js/alpha-manifest.json") // eslint-disable-line
1717
}),
1818
new webpack.DllReferencePlugin({
1919
scope: "beta",
20-
manifest: require("../dll/js/beta-manifest.json"),
20+
manifest: require("../dll/js/beta-manifest.json"), // eslint-disable-line
2121
extensions: [".js", ".jsx"]
2222
})
2323
]
@@ -235,7 +235,7 @@ Version: webpack 2.4.1
235235
output.js 6.16 kB 0 [emitted] main
236236
Entrypoint main = output.js
237237
chunk {0} output.js (main) 541 bytes [entry] [rendered]
238-
> main [8] ./example.js
238+
> main [8] ./example.js
239239
[2] delegated ./a.js from dll-reference alpha_282e8826843b2bb4eeb1 42 bytes {0} [not cacheable] [built]
240240
cjs require ../dll/a [8] ./example.js 2:12-31
241241
[3] delegated ./alpha.js from dll-reference alpha_282e8826843b2bb4eeb1 42 bytes {0} [not cacheable] [built]
@@ -261,7 +261,7 @@ Version: webpack 2.4.1
261261
output.js 930 bytes 0 [emitted] main
262262
Entrypoint main = output.js
263263
chunk {0} output.js (main) 541 bytes [entry] [rendered]
264-
> main [8] ./example.js
264+
> main [8] ./example.js
265265
[2] delegated ./a.js from dll-reference alpha_282e8826843b2bb4eeb1 42 bytes {0} [not cacheable] [built]
266266
cjs require ../dll/a [8] ./example.js 2:12-31
267267
[3] delegated ./alpha.js from dll-reference alpha_282e8826843b2bb4eeb1 42 bytes {0} [not cacheable] [built]

0 commit comments

Comments
 (0)