repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin/1-issue-10475/index.js
test/configCases/dll-plugin/1-issue-10475/index.js
it("should have all modules", () => { require("dll/index.js"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin/1-issue-10475/webpack.config.js
test/configCases/dll-plugin/1-issue-10475/webpack.config.js
"use strict"; const webpack = require("../../../../"); /** @type {import("../../../../").Configuration} */ module.exports = { plugins: [ new webpack.DllReferencePlugin({ manifest: require("../../../js/config/dll-plugin/issue-10475.json"), name: "../0-issue-10475/dll.js", scope: "dll", sourceType: "comm...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin/5-issue-18200/b.js
test/configCases/dll-plugin/5-issue-18200/b.js
module.exports = "b";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin/5-issue-18200/webpack.config.js
test/configCases/dll-plugin/5-issue-18200/webpack.config.js
"use strict"; const path = require("path"); const webpack = require("../../../../"); /** @type {import("../../../../").Configuration} */ module.exports = { entry: { a: "./a", b: "./b" }, output: { filename: "MyDll.[name].js", library: "[name]_[fullhash]" }, plugins: [ new webpack.DllPlugin({ path: p...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin/5-issue-18200/errors.js
test/configCases/dll-plugin/5-issue-18200/errors.js
"use strict"; module.exports = [[/each chunk must have a unique path/]];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin/5-issue-18200/a.js
test/configCases/dll-plugin/5-issue-18200/a.js
module.exports = "a";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/require-entry-point/entry-point2.js
test/configCases/entry/require-entry-point/entry-point2.js
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/require-entry-point/entry-point.js
test/configCases/entry/require-entry-point/entry-point.js
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/require-entry-point/webpack.config.js
test/configCases/entry/require-entry-point/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { bundle0: "./require-entry-point", a: "./entry-point", b: ["./entry-point2"] }, output: { filename: "[name].js" } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/require-entry-point/require-entry-point.js
test/configCases/entry/require-entry-point/require-entry-point.js
it("should require entry points fine", function() { require("./require-entry-point"); require("./entry-point"); require("./entry-point2"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/page3.js
test/configCases/entry/depend-on-advanced/page3.js
import isomorphicFetch from "isomorphic-fetch"; import react from "react"; import reactDOM from "react-dom"; it("should be able to load the modules", () => { expect(isomorphicFetch).toBe("isomorphic-fetch"); expect(react).toBe("react"); expect(reactDOM).toBe("react-dom"); }); it("should have the correct modules in...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/page2.js
test/configCases/entry/depend-on-advanced/page2.js
import isomorphicFetch from "isomorphic-fetch"; import react from "react"; import reactDOM from "react-dom"; it("should be able to load the modules", () => { expect(isomorphicFetch).toBe("isomorphic-fetch"); expect(react).toBe("react"); expect(reactDOM).toBe("react-dom"); }); it("should have the correct modules in...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/page1.js
test/configCases/entry/depend-on-advanced/page1.js
import isomorphicFetch from "isomorphic-fetch"; import react from "react"; import reactDOM from "react-dom"; it("should be able to load the modules", () => { expect(isomorphicFetch).toBe("isomorphic-fetch"); expect(react).toBe("react"); expect(reactDOM).toBe("react-dom"); }); it("should have the correct modules in...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/test.config.js
test/configCases/entry/depend-on-advanced/test.config.js
"use strict"; module.exports = { findBundle() { return [ "./app.js", "./runtime.js", "./page1.js", "./react-vendors.js", "./page2.js", "./other-vendors.js", "./page3.js" ]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/app.js
test/configCases/entry/depend-on-advanced/app.js
import isomorphicFetch from "isomorphic-fetch"; import lodash from "lodash";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/lazy.js
test/configCases/entry/depend-on-advanced/lazy.js
import lodash from "lodash"; import propTypes from "prop-types"; export default function() { expect(lodash).toBe("lodash"); expect(propTypes).toBe("prop-types"); }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/webpack.config.js
test/configCases/entry/depend-on-advanced/webpack.config.js
"use strict"; /** @typedef {import("../../../../").Compiler} Compiler */ /** @typedef {import("../../../../").Compilation} Compilation */ /** @typedef {import("../../../../").Configuration} Configuration */ /** @typedef {import("../../../../").Chunk} Chunk */ /** @type {Configuration} */ /** @type {import("../../../....
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/other-vendors.js
test/configCases/entry/depend-on-advanced/other-vendors.js
import lodash from "lodash"; import { set } from "test"; set("ok");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/node_modules/lodash.js
test/configCases/entry/depend-on-advanced/node_modules/lodash.js
module.exports = 'lodash';
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/node_modules/prop-types.js
test/configCases/entry/depend-on-advanced/node_modules/prop-types.js
module.exports = 'prop-types';
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/node_modules/test.js
test/configCases/entry/depend-on-advanced/node_modules/test.js
export let value = "fail"; export function set(v) { value = v; }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/node_modules/react.js
test/configCases/entry/depend-on-advanced/node_modules/react.js
module.exports = 'react';
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/node_modules/isomorphic-fetch.js
test/configCases/entry/depend-on-advanced/node_modules/isomorphic-fetch.js
module.exports = "isomorphic-fetch";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-advanced/node_modules/react-dom.js
test/configCases/entry/depend-on-advanced/node_modules/react-dom.js
module.exports = 'react-dom';
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/single-entry-point/single-entry-point.js
test/configCases/entry/single-entry-point/single-entry-point.js
it("should require entry points fine", function() { require("./single-entry-point"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/single-entry-point/webpack.config.js
test/configCases/entry/single-entry-point/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: "./single-entry-point" };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-13637/test.config.js
test/configCases/entry/issue-13637/test.config.js
"use strict"; const System = require("../../../helpers/fakeSystem"); module.exports = { beforeExecute: () => { System.init(); }, moduleScope(scope) { scope.System = System; }, afterExecute: () => { System.execute("(anonym)"); }, findBundle() { return ["./main.system.js", "./main.umd.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-13637/index-system.js
test/configCases/entry/issue-13637/index-system.js
// This test verifies that the System.register context is made available to webpack bundles it("should be able to use the System.register context in entries where library.type is system", function() { expect(__system_context__).toBeTruthy(); expect(__system_context__.meta).toBeTruthy(); expect(typeof __system_co...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-13637/webpack.config.js
test/configCases/entry/issue-13637/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { "main-system": { import: "./index-system.js", library: { type: "system" }, filename: "main.system.js" }, "main-umd": { import: "./index-umd.js", library: { type: "umd" }, filename: "main...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-13637/index-umd.js
test/configCases/entry/issue-13637/index-umd.js
// This test verifies that the System.register context is not available for non-system entries it("should not be able to use the System.register context in entries where library.type is not system", function() { expect(__system_context__).toBeUndefined(); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/b.js
test/configCases/entry/issue-1068/b.js
global.order.push("b");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/i.js
test/configCases/entry/issue-1068/i.js
global.order.push("i");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/test.js
test/configCases/entry/issue-1068/test.js
var order = global.order; delete global.order; it("should run the modules in the correct order", function() { expect(order).toEqual([ "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k" ]); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/h.js
test/configCases/entry/issue-1068/h.js
global.order.push("h");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/g.js
test/configCases/entry/issue-1068/g.js
global.order.push("g");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/d.js
test/configCases/entry/issue-1068/d.js
global.order.push("d");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/f.js
test/configCases/entry/issue-1068/f.js
global.order.push("f");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/e.js
test/configCases/entry/issue-1068/e.js
global.order.push("e");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/j.js
test/configCases/entry/issue-1068/j.js
global.order.push("j");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/k.js
test/configCases/entry/issue-1068/k.js
global.order.push("k");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/webpack.config.js
test/configCases/entry/issue-1068/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: [ "./a", "./b", "./c", "./d", "./e", "./f", "./g", "./h", "./i", "./j", "./k", "./test" ] };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/c.js
test/configCases/entry/issue-1068/c.js
global.order.push("c");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-1068/a.js
test/configCases/entry/issue-1068/a.js
global.order = ["a"];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names2/index.js
test/configCases/entry/weird-names2/index.js
it("should load on demand", () => import(/* webpackChunkName: "././../chunk/chunk/./../" */ "./chunk").then(r => expect(r).toEqual(expect.objectContaining({ default: 42 })) ));
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names2/chunk.js
test/configCases/entry/weird-names2/chunk.js
export default 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names2/test.config.js
test/configCases/entry/weird-names2/test.config.js
"use strict"; module.exports = { findBundle(i, options) { return [ `../weird-names2-out/entry/entry-${options.target}.js`, `../weird-names2-out/entry-${options.target}.js` ]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names2/webpack.config.js
test/configCases/entry/weird-names2/webpack.config.js
"use strict"; const entry = { "././../weird-names2-out/entry/point/./../entry": "./index.js", "..//weird-names2-out////entry": "./index.js" }; /** @type {import("../../../../").Configuration[]} */ module.exports = [ { target: "async-node", entry, output: { filename: "[name]-async-node.js", chunkFilenam...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-non-js/b.js
test/configCases/entry/depend-on-non-js/b.js
if (Math.random() < 0) require("./b.css"); it("should run the test", () => {});
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-non-js/test.config.js
test/configCases/entry/depend-on-non-js/test.config.js
"use strict"; module.exports = { findBundle() { return ["./runtime.js", "./a.js", "./b.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-non-js/webpack.config.js
test/configCases/entry/depend-on-non-js/webpack.config.js
"use strict"; const MiniCssPlugin = require("mini-css-extract-plugin"); /** @type {import("../../../../").Configuration} */ module.exports = { entry: { a: "./a.js", b: { import: "./b.js", dependOn: "a" } }, module: { rules: [ { test: /\.css$/, loader: MiniCssPlugin.loader } ] }, output: { ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-non-js/a.js
test/configCases/entry/depend-on-non-js/a.js
if (Math.random() < 0) require("./a.css");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/usage-info-in-multiple-entry-points/b.js
test/configCases/entry/usage-info-in-multiple-entry-points/b.js
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/usage-info-in-multiple-entry-points/webpack.config.js
test/configCases/entry/usage-info-in-multiple-entry-points/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: ["./a", "./b"] };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/usage-info-in-multiple-entry-points/module.js
test/configCases/entry/usage-info-in-multiple-entry-points/module.js
export default 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/usage-info-in-multiple-entry-points/a.js
test/configCases/entry/usage-info-in-multiple-entry-points/a.js
import value from "./module"; it("should have usage info in this module", () => { expect(value).toBe(42); })
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/adding-multiple-entry-points/fail.js
test/configCases/entry/adding-multiple-entry-points/fail.js
// no test here, this will fail when only this entry is loaded
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/adding-multiple-entry-points/test.config.js
test/configCases/entry/adding-multiple-entry-points/test.config.js
"use strict"; module.exports = { findBundle() { return ["./runtime~main.js", "./main.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/adding-multiple-entry-points/webpack.config.js
test/configCases/entry/adding-multiple-entry-points/webpack.config.js
"use strict"; const EntryPlugin = require("../../../../").EntryPlugin; /** @type {import("../../../../").Configuration} */ module.exports = { entry: () => ({}), optimization: { runtimeChunk: true }, output: { filename: "[name].js", chunkFilename: "[name].chunk.js" }, target: "web", plugins: [ new Entry...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/adding-multiple-entry-points/ok.js
test/configCases/entry/adding-multiple-entry-points/ok.js
it("should load correct entry", function() { // ok });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-8110/b.js
test/configCases/entry/issue-8110/b.js
import run from "./c"; run();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-8110/d.js
test/configCases/entry/issue-8110/d.js
export default "ok";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-8110/webpack.config.js
test/configCases/entry/issue-8110/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { bundle0: "./a", other: "./b" }, output: { filename: "[name].js" } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-8110/c.js
test/configCases/entry/issue-8110/c.js
export default function run() { return import("./d"); }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-8110/a.js
test/configCases/entry/issue-8110/a.js
import run from "./c"; import "./d"; it("should not crash", () => { return run().then(result => { expect(result.default).toBe("ok"); }); })
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/no-chunking/nested.js
test/configCases/entry/no-chunking/nested.js
// This is the nested async chunk export default 43;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/no-chunking/b.js
test/configCases/entry/no-chunking/b.js
import fs from "fs"; it("should include all async imports in the main chunk", async () => { expect((await import("./async")).default).toEqual(42); expect((await (await import("./async")).nested()).default).toEqual(43); expect(fs.readFileSync(__filename, "utf-8")).toContain( "This is the async chunk" ); expect(f...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/no-chunking/test.config.js
test/configCases/entry/no-chunking/test.config.js
"use strict"; module.exports = { findBundle() { return ["./a.js", "./b.js", "./c.js", "./runtime.js", "./d.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/no-chunking/async.js
test/configCases/entry/no-chunking/async.js
// This is the async chunk export default 42; export const nested = () => import("./nested");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/no-chunking/webpack.config.js
test/configCases/entry/no-chunking/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { a: "./a.js", b: { import: "./b.js", chunkLoading: false }, c: { import: "./b.js", asyncChunks: false }, d: { import: "./b.js", asyncChunks: false, runtime: "runtime" } }, output: { file...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/no-chunking/a.js
test/configCases/entry/no-chunking/a.js
import fs from "fs"; it("should load chunks on demand", async () => { expect((await import("./async")).default).toEqual(42); expect((await (await import("./async")).nested()).default).toEqual(43); expect(fs.readFileSync(__filename, "utf-8")).not.toContain( "This is the" + " async chunk" ); expect(fs.readFileSyn...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-bug/page1.js
test/configCases/entry/depend-on-bug/page1.js
import isomorphicFetch from "isomorphic-fetch"; it("should run", () => { expect( __STATS__.modules.find(m => m.name.includes("isomorphic-fetch")).chunks ).toHaveLength(1); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-bug/test.config.js
test/configCases/entry/depend-on-bug/test.config.js
"use strict"; module.exports = { findBundle() { return ["./other-vendors.js", "./page1.js", "./app.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-bug/app.js
test/configCases/entry/depend-on-bug/app.js
import isomorphicFetch from "isomorphic-fetch";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-bug/webpack.config.js
test/configCases/entry/depend-on-bug/webpack.config.js
"use strict"; /** @typedef {import("../../../../").Compiler} Compiler */ /** @typedef {import("../../../../").Compilation} Compilation */ /** @typedef {import("../../../../").Configuration} Configuration */ /** @type {Configuration} */ /** @type {import("../../../../").Configuration} */ module.exports = { entry() { ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-bug/other-vendors.js
test/configCases/entry/depend-on-bug/other-vendors.js
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-bug/node_modules/isomorphic-fetch.js
test/configCases/entry/depend-on-bug/node_modules/isomorphic-fetch.js
module.exports = "isomorphic-fetch";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/entry-base-uri/index.js
test/configCases/entry/entry-base-uri/index.js
const jpg = new URL("./1.jpg", import.meta.url); it("should provide custom base uri", () => { expect(jpg.toString()).toBe("my-scheme://baseuri/1.jpg"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/entry-base-uri/webpack.config.js
test/configCases/entry/entry-base-uri/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { bundle0: { import: "./index.js", baseUri: "my-scheme://baseuri", publicPath: "/" } }, output: { assetModuleFilename: "[name][ext]" }, target: "web" };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/descriptor/b.js
test/configCases/entry/descriptor/b.js
it("should compile", (done) => { done() });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/descriptor/test.config.js
test/configCases/entry/descriptor/test.config.js
"use strict"; module.exports = { findBundle() { return ["./a.js", "./b.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/descriptor/webpack.config.js
test/configCases/entry/descriptor/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry() { return { a: { import: "./a" }, b: { import: ["./b"] } }; }, output: { filename: "[name].js" } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/descriptor/a.js
test/configCases/entry/descriptor/a.js
it("should compile", (done) => { done() });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names/index.js
test/configCases/entry/weird-names/index.js
it("should load on demand", () => import(/* webpackChunkName: "././../chunk/chunk/./../" */ "./chunk").then(r => expect(r).toEqual(expect.objectContaining({ default: 42 })) ));
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names/chunk.js
test/configCases/entry/weird-names/chunk.js
export default 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names/test.config.js
test/configCases/entry/weird-names/test.config.js
"use strict"; module.exports = { findBundle(i, options) { return [ `./${options.target}/folder/entry/-x/file.js`, `./${options.target}/folder/x-/-x/file.js`, `./${options.target}/folder/x-../entry-x/file.js` ]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/weird-names/webpack.config.js
test/configCases/entry/weird-names/webpack.config.js
"use strict"; const entry = { "././../entry/point/./../": "./index.js", "/////": "./index.js", "../entry": "./index.js" }; /** @type {import("../../../../").Configuration[]} */ module.exports = [ { target: "async-node", entry, output: { filename: "async-node/folder/x-[name]-x/file.js", chunkFilename: ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/function/b.js
test/configCases/entry/function/b.js
it("should compile", (done) => { done() });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/function/test.config.js
test/configCases/entry/function/test.config.js
"use strict"; module.exports = { findBundle() { return ["./a.js", "./b.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/function/webpack.config.js
test/configCases/entry/function/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry() { return { a: "./a", b: ["./b"] }; }, output: { filename: "[name].js" } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/function/a.js
test/configCases/entry/function/a.js
it("should compile", (done) => { done() });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-simple/test.config.js
test/configCases/entry/depend-on-simple/test.config.js
"use strict"; module.exports = { findBundle() { return ["./app.js", "./react-vendors.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-simple/app.js
test/configCases/entry/depend-on-simple/app.js
import react from "react"; import reactDOM from "react-dom"; import propTypes from "prop-types"; it("should load modules correctly", () => { expect(react).toBe("react"); expect(reactDOM).toBe("react-dom"); expect(propTypes).toBe("prop-types"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-simple/webpack.config.js
test/configCases/entry/depend-on-simple/webpack.config.js
"use strict"; /** @typedef {import("../../../../").Compiler} Compiler */ /** @typedef {import("../../../../").Compilation} Compilation */ /** @typedef {import("../../../../").Chunk} Chunk */ /** @typedef {import("../../../../").Module} Module */ /** @type {import("../../../../").Configuration} */ module.exports = { ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-simple/node_modules/prop-types.js
test/configCases/entry/depend-on-simple/node_modules/prop-types.js
module.exports = 'prop-types';
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-simple/node_modules/react.js
test/configCases/entry/depend-on-simple/node_modules/react.js
module.exports = 'react';
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/depend-on-simple/node_modules/react-dom.js
test/configCases/entry/depend-on-simple/node_modules/react-dom.js
module.exports = 'react-dom';
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-12562/home.js
test/configCases/entry/issue-12562/home.js
import log from "./log"; log("Hi"); it("should load", () => {});
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-12562/test.js
test/configCases/entry/issue-12562/test.js
import log from "./log"; log("Hi");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-12562/test.config.js
test/configCases/entry/issue-12562/test.config.js
"use strict"; module.exports = { findBundle() { return ["./runtime.js", "./app.js", "./home.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/entry/issue-12562/app.js
test/configCases/entry/issue-12562/app.js
it("should load", () => import("./test.js"));
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false