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/context-modules/exclusion/some-dir/check-here/file.js | test/configCases/context-modules/exclusion/some-dir/check-here/file.js | module.exports = "thats good";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/exclusion/some-dir/check-here/dont-check-here/file.js | test/configCases/context-modules/exclusion/some-dir/check-here/dont-check-here/file.js | module.exports = "thats bad";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/exclusion/some-dir/check-here/check-here/file.js | test/configCases/context-modules/exclusion/some-dir/check-here/check-here/file.js | module.exports = "thats good";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-System.import/index.js | test/configCases/context-modules/replacement-System.import/index.js | it("should replace a async context with a manual map", function() {
var a = "a";
return import(a).then(function(a) {
expect(a).toEqual(nsObj({ default: "b" }));
});
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-System.import/webpack.config.js | test/configCases/context-modules/replacement-System.import/webpack.config.js | "use strict";
var path = require("path");
var webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
plugins: [
new webpack.ContextReplacementPlugin(
/replacement/,
path.resolve(__dirname, "modules"),
{
a: "./module-b"
}
)
]
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-System.import/modules/module-b.js | test/configCases/context-modules/replacement-System.import/modules/module-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/context-modules/replacement-f/index.js | test/configCases/context-modules/replacement-f/index.js | it("should replace a context with a new regExp", function() {
function rqInContext(x) {
return require('./folder/' + x);
}
expect(rqInContext("a")).toBe("a");
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-f/webpack.config.js | test/configCases/context-modules/replacement-f/webpack.config.js | "use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
plugins: [new webpack.ContextReplacementPlugin(/folder$/, false, /(a|b)/)]
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-f/folder/a.js | test/configCases/context-modules/replacement-f/folder/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/context-modules/replacement-f/folder/nested/error.js | test/configCases/context-modules/replacement-f/folder/nested/error.js | This
should
result
in
an
error
}]) | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias/index.js | test/configCases/context-modules/multiple-alias/index.js | const load = id => import(`app/${id}?query#hash`);
it("show override request", async () => {
expect((await load("a")).default).toBe("override/a");
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias/webpack.config.js | test/configCases/context-modules/multiple-alias/webpack.config.js | "use strict";
const path = require("path");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
resolve: {
alias: {
app: [path.join(__dirname, "src/main"), path.join(__dirname, "src/foo")]
}
},
plugins: [
new webpack.ContextReplacementPlugin(/mai... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias/src/main/a.js | test/configCases/context-modules/multiple-alias/src/main/a.js | export default "main/a";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias/src/override/a.js | test/configCases/context-modules/multiple-alias/src/override/a.js | export default "override/a";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias/src/foo/a.js | test/configCases/context-modules/multiple-alias/src/foo/a.js | export default "foo/a";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-e/index.js | test/configCases/context-modules/replacement-e/index.js | it("should replace a context with a new resource and reqExp", function (done) {
function rqInContext(x, callback) {
require([x], function (x) {
callback(x);
});
}
rqInContext("replaced", function (r) {
expect(r).toBe("ok");
rqInContext("./modules/replaced", function (r) {
expect(r).toBe("ok");
done(... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-e/webpack.config.js | test/configCases/context-modules/replacement-e/webpack.config.js | "use strict";
const path = require("path");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
resolve: {
modules: ["...", path.resolve(__dirname, "new-context/modules")]
},
plugins: [
new webpack.ContextReplacementPlugin(
/replacement.e$/,
"ne... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-e/new-context/modules/error.js | test/configCases/context-modules/replacement-e/new-context/modules/error.js | This
should
result
in
an
error
}]) | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-e/new-context/modules/replaced.js | test/configCases/context-modules/replacement-e/new-context/modules/replaced.js | module.exports = "ok"; | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-c/index.js | test/configCases/context-modules/replacement-c/index.js | it("should replace a context with a manual map", function() {
function rqInContext(x) {
return require(x);
}
expect(rqInContext("a")).toBe("a");
expect(rqInContext("b")).toBe("b");
expect(rqInContext("./c")).toBe("b");
expect(rqInContext("d")).toBe("d");
expect(rqInContext("./d")).toBe("d");
(expect(function(... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-c/webpack.config.js | test/configCases/context-modules/replacement-c/webpack.config.js | "use strict";
const path = require("path");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
plugins: [
new webpack.ContextReplacementPlugin(
/replacement.c$/,
path.resolve(__dirname, "modules"),
{
a: "./a",
b: "./module-b",
"./c":... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-c/node_modules/d.js | test/configCases/context-modules/replacement-c/node_modules/d.js | module.exports = "d";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-c/modules/module-b.js | test/configCases/context-modules/replacement-c/modules/module-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/context-modules/replacement-c/modules/a.js | test/configCases/context-modules/replacement-c/modules/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/context-modules/replacement-d/index.js | test/configCases/context-modules/replacement-d/index.js | it("should replace a context with resource query and manual map", function() {
function rqInContext(x) {
return require(x);
}
expect(rqInContext("a")).toEqual({
resourceQuery: "?cats=meow",
query: "?lions=roar",
prev: "module.exports = \"a\";\n",
});
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-d/webpack.config.js | test/configCases/context-modules/replacement-d/webpack.config.js | "use strict";
const path = require("path");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
module: {
rules: [
{
test: /a\.js$/,
use: ["./queryloader?lions=roar"]
}
]
},
plugins: [
new webpack.ContextReplacementPlugin(
/replacem... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-d/queryloader.js | test/configCases/context-modules/replacement-d/queryloader.js | /** @type {import("../../../../").LoaderDefinition} */
module.exports = function (content) {
return (
"module.exports = " +
JSON.stringify({
resourceQuery: this.resourceQuery,
query: this.query,
prev: content.replace(/\r\n?/g, "\n")
})
);
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-d/modules/a.js | test/configCases/context-modules/replacement-d/modules/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/context-modules/context-options/index.js | test/configCases/context-modules/context-options/index.js | async function loadModule(name) {
return import("./dir/" + name);
}
async function loadModuleWithExclude(name) {
return import(/* webpackExclude: /module-b\.js$/ */ "./dir/" + name);
}
async function loadModuleWithInclude(name) {
return import(/* webpackInclude: /module-b\.js$/ */ "./dir/" + name);
}
async functi... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/context-options/webpack.config.js | test/configCases/context-modules/context-options/webpack.config.js | "use strict";
/** @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/context-modules/context-options/dir/module-c.js | test/configCases/context-modules/context-options/dir/module-c.js | export default "c";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/context-options/dir/module-b.js | test/configCases/context-modules/context-options/dir/module-b.js | export default "b";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/context-options/dir/module-a.js | test/configCases/context-modules/context-options/dir/module-a.js | export default "a";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/import-attributes/test.filter.js | test/configCases/context-modules/import-attributes/test.filter.js | "use strict";
const supportsTextDecoder = require("../../../helpers/supportsTextDecoder");
module.exports = () => supportsTextDecoder();
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/import-attributes/index.js | test/configCases/context-modules/import-attributes/index.js | it("show override request", async () => {
const decoder = new TextDecoder('utf-8');
const mod = "file.ext";
const loadedMod = (await import(`./files/${mod}`, { with: { type: "bytes" } })).default;
const text = decoder.decode(loadedMod);
expect(JSON.parse(text)).toEqual({ foo: "bar" });
const otherLoadedMod = (a... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/import-attributes/webpack.config.js | test/configCases/context-modules/import-attributes/webpack.config.js | "use strict";
/** @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/context-modules/multiple-alias-2/index.js | test/configCases/context-modules/multiple-alias-2/index.js | const load = id => import(`app/${id}?query#hash`);
it("show override request", async () => {
expect((await load("a")).default).toBe("override/a");
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias-2/webpack.config.js | test/configCases/context-modules/multiple-alias-2/webpack.config.js | "use strict";
const path = require("path");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
resolve: {
alias: {
app: [path.join(__dirname, "src/main"), path.join(__dirname, "src/foo")]
}
},
plugins: [new webpack.ContextReplacementPlugin(/main/,... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias-2/src/main/a.js | test/configCases/context-modules/multiple-alias-2/src/main/a.js | export default "main/a";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias-2/src/override/a.js | test/configCases/context-modules/multiple-alias-2/src/override/a.js | export default "override/a";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/multiple-alias-2/src/foo/a.js | test/configCases/context-modules/multiple-alias-2/src/foo/a.js | export default "foo/a";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-a/index.js | test/configCases/context-modules/replacement-a/index.js | it("should replace a context with a new resource and reqExp", function(done) {
function rqInContext(x, callback) {
require([x], function(x) {
callback(x);
});
}
rqInContext("replaced", function(r) {
expect(r).toBe("ok");
done();
});
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-a/webpack.config.js | test/configCases/context-modules/replacement-a/webpack.config.js | "use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
plugins: [
new webpack.ContextReplacementPlugin(
/replacement.a$/,
"new-context",
true,
/^replaced$/
)
]
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-a/new-context/node_modules/error.js | test/configCases/context-modules/replacement-a/new-context/node_modules/error.js | This
should
result
in
an
error
}]) | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/context-modules/replacement-a/new-context/node_modules/replaced.js | test/configCases/context-modules/replacement-a/new-context/node_modules/replaced.js | module.exports = "ok"; | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/0-create-dll/index.js | test/configCases/dll-plugin-entry/0-create-dll/index.js | export { bar } from "./dep";
export default 42;
require("./dep2");
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/0-create-dll/test.config.js | test/configCases/dll-plugin-entry/0-create-dll/test.config.js | "use strict";
module.exports.noTests = true;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/0-create-dll/dep2.js | test/configCases/dll-plugin-entry/0-create-dll/dep2.js | module.exports = "foo";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/0-create-dll/webpack.config.js | test/configCases/dll-plugin-entry/0-create-dll/webpack.config.js | "use strict";
const path = require("path");
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
entry: ["."],
output: {
filename: "dll.js",
chunkFilename: "[id].dll.js",
libraryTarget: "commonjs2"
},
plugins: [
new webpack.DllPlugin({
path: pa... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/0-create-dll/dep.js | test/configCases/dll-plugin-entry/0-create-dll/dep.js | export function foo() {
console.log("foo");
}
export const bar = "bar";
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/2-error-non-entry/index.js | test/configCases/dll-plugin-entry/2-error-non-entry/index.js | require("dll/dep2");
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/2-error-non-entry/webpack.config.js | test/configCases/dll-plugin-entry/2-error-non-entry/webpack.config.js | "use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
optimization: {
moduleIds: "named"
},
plugins: [
new webpack.DllReferencePlugin({
manifest: require("../../../js/config/dll-plugin-entry/manifest0.json"),
name: "../0-create-dll/d... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/2-error-non-entry/errors.js | test/configCases/dll-plugin-entry/2-error-non-entry/errors.js | "use strict";
module.exports = [[/Can't resolve 'dll\/dep2'/]];
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/1-use-dll/index.js | test/configCases/dll-plugin-entry/1-use-dll/index.js | import Answer, { bar } from "dll/index";
it("should load a module from dll", function() {
expect(require("dll/index")).toEqual(nsObj({ bar: "bar", default: 42 }));
});
it("should load an harmony module from dll (default export)", function() {
expect(Answer).toBe(42);
});
it("should load an harmony module from dll ... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/dll-plugin-entry/1-use-dll/webpack.config.js | test/configCases/dll-plugin-entry/1-use-dll/webpack.config.js | "use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
optimization: {
moduleIds: "named"
},
plugins: [
new webpack.DllReferencePlugin({
manifest: require("../../../js/config/dll-plugin-entry/manifest0.json"),
name: "../0-create-dll/d... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/devtool-eval/index.js | test/configCases/trusted-types/devtool-eval/index.js | it("should pass TrustedScript to eval", function () {
var policy = __webpack_require__.tt();
policy.createScript = jest.fn(script => {
expect(typeof script).toEqual("string");
return new TrustedScript(script);
});
require("./test.js");
expect(window.module.exports).toBeInstanceOf(Object);
expect(window.modul... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/devtool-eval/test.js | test/configCases/trusted-types/devtool-eval/test.js | var test = {
foo: 'bar'
};
module.exports = test;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/devtool-eval/webpack.config.js | test/configCases/trusted-types/devtool-eval/webpack.config.js | "use strict";
/** @type {import("../../../../").Configuration[]} */
module.exports = [
{
target: "web",
output: {
filename: "bundle0.js",
trustedTypes: true
},
devtool: "eval-source-map"
},
{
target: "web",
output: {
filename: "bundle1.js",
trustedTypes: true
},
devtool: "eval"
}
];
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/no-trusted-types/index.js | test/configCases/trusted-types/no-trusted-types/index.js | it("should load chunk when there are no trusted types", function () {
const promise = import(
"./empty?a" /* webpackChunkName: "no-trusted-types" */
);
var script = document.head._children.pop();
__non_webpack_require__("./no-trusted-types.web.js");
expect(script.src).toBe("https://test.cases/path/no-trusted-ty... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/no-trusted-types/empty.js | test/configCases/trusted-types/no-trusted-types/empty.js | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false | |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/no-trusted-types/webpack.config.js | test/configCases/trusted-types/no-trusted-types/webpack.config.js | "use strict";
module.exports = {
target: "web",
output: {
chunkFilename: "[name].web.js",
crossOriginLoading: "anonymous",
trustedTypes: true
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/stop-on-policy-creation-failure/index.js | test/configCases/trusted-types/stop-on-policy-creation-failure/index.js | it("should stop if policy fails to be created", function () {
// emulate trusted types in a window object
window.trustedTypes = {
createPolicy: () => {
throw new Error("Rejecting createPolicy call");
}
};
const createPolicySpy = jest.spyOn(window.trustedTypes, "createPolicy");
const consoleWarn = jest.spyO... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/stop-on-policy-creation-failure/empty.js | test/configCases/trusted-types/stop-on-policy-creation-failure/empty.js | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false | |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/stop-on-policy-creation-failure/webpack.config.js | test/configCases/trusted-types/stop-on-policy-creation-failure/webpack.config.js | "use strict";
module.exports = {
target: "web",
output: {
chunkFilename: "[name].web.js",
crossOriginLoading: "anonymous",
trustedTypes: true
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/continue-on-policy-creation-failure/index.js | test/configCases/trusted-types/continue-on-policy-creation-failure/index.js | it("can continue on policy creation failure", function () {
// emulate trusted types in a window object
window.trustedTypes = {
createPolicy: () => {
throw new Error("Rejecting createPolicy call");
}
};
const createPolicySpy = jest.spyOn(window.trustedTypes, "createPolicy");
const consoleWarn = jest.spyOn(... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/continue-on-policy-creation-failure/empty.js | test/configCases/trusted-types/continue-on-policy-creation-failure/empty.js | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false | |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/continue-on-policy-creation-failure/webpack.config.js | test/configCases/trusted-types/continue-on-policy-creation-failure/webpack.config.js | "use strict";
module.exports = {
target: "web",
output: {
chunkFilename: "[name].web.js",
crossOriginLoading: "anonymous",
trustedTypes: {
policyName: "CustomPolicyName",
onPolicyCreationFailure: "continue"
}
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/custom-policy-name/index.js | test/configCases/trusted-types/custom-policy-name/index.js | it("should load chunk using trusted types with custom policy name", function () {
// emulate trusted types in a window object
const noop = i => i;
const rules = {
createScriptURL: noop
};
window.trustedTypes = {
createPolicy: () => rules
};
const createScriptURLSpy = jest.spyOn(rules, "createScriptURL");
co... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/custom-policy-name/empty.js | test/configCases/trusted-types/custom-policy-name/empty.js | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false | |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/custom-policy-name/webpack.config.js | test/configCases/trusted-types/custom-policy-name/webpack.config.js | "use strict";
module.exports = {
target: "web",
output: {
chunkFilename: "[name].web.js",
crossOriginLoading: "anonymous",
trustedTypes: "customPolicyName"
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/default-policy-name/index.js | test/configCases/trusted-types/default-policy-name/index.js | it("should use default trusted types policy name", function () {
// emulate trusted types in a window object
const noop = i => i;
const rules = {
createScriptURL: noop
};
window.trustedTypes = {
createPolicy: () => rules
};
const createScriptURLSpy = jest.spyOn(rules, "createScriptURL");
const createPolicyS... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/default-policy-name/empty.js | test/configCases/trusted-types/default-policy-name/empty.js | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false | |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/default-policy-name/webpack.config.js | test/configCases/trusted-types/default-policy-name/webpack.config.js | "use strict";
module.exports = {
target: "web",
output: {
chunkFilename: "[name].web.js",
crossOriginLoading: "anonymous",
trustedTypes: true
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/no-policy-name/index.js | test/configCases/trusted-types/no-policy-name/index.js | it("should skip trusted types logic when policy name is empty", function () {
// emulate trusted types in a window object
const noop = i => i;
const rules = {
createScriptURL: noop
};
window.trustedTypes = {
createPolicy: () => rules
};
const createScriptURLSpy = jest.spyOn(rules, "createScriptURL");
const ... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/no-policy-name/empty.js | test/configCases/trusted-types/no-policy-name/empty.js | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false | |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/no-policy-name/webpack.config.js | test/configCases/trusted-types/no-policy-name/webpack.config.js | "use strict";
module.exports = {
target: "web",
output: {
chunkFilename: "[name].web.js",
crossOriginLoading: "anonymous"
},
performance: {
hints: false
},
optimization: {
minimize: false
}
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/web-worker/test.filter.js | test/configCases/trusted-types/web-worker/test.filter.js | "use strict";
const supportsWorker = require("../../../helpers/supportsWorker");
module.exports = () => supportsWorker();
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/web-worker/index.js | test/configCases/trusted-types/web-worker/index.js | it("should load a WebWorker using a TrustedScriptURL", async () => {
const noop = i => i;
const rules = {
createScriptURL: noop
};
window.trustedTypes = {
createPolicy: () => rules
};
const createScriptURLSpy = jest.spyOn(rules, "createScriptURL");
const createPolicySpy = jest.spyOn(window.trustedTypes, "cre... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/web-worker/test.config.js | test/configCases/trusted-types/web-worker/test.config.js | "use strict";
module.exports = {
findBundle() {
return ["main.js"];
}
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/web-worker/importingWorker.js | test/configCases/trusted-types/web-worker/importingWorker.js | // Mock Trusted Types to test if the import (rewritten as importScripts) goes through TT as well.
let policyName = "none";
let scriptURL = "none";
self.trustedTypes = {
createPolicy: (name, rules) => {
policyName = name;
const createScriptURL = rules.createScriptURL;
rules.createScriptURL = url => {
scriptU... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/web-worker/worker.js | test/configCases/trusted-types/web-worker/worker.js | //importScripts("./imported.js");
onmessage = async event => {
postMessage(`data: ${event.data}, thanks`);
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/web-worker/webpack.config.js | test/configCases/trusted-types/web-worker/webpack.config.js | "use strict";
module.exports = {
output: {
filename: "[name].js",
chunkFilename: "chunk.[name].js",
trustedTypes: true
},
target: "web"
};
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/trusted-types/web-worker/module.js | test/configCases/trusted-types/web-worker/module.js | export function upper(s) {
return s.toUpperCase();
}
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/finish-modules/simple/index.js | test/configCases/finish-modules/simple/index.js | it("should compile", function(done) {
done();
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/finish-modules/simple/webpack.config.js | test/configCases/finish-modules/simple/webpack.config.js | "use strict";
/**
* @this {import("../../../../").Compiler} the compiler
*/
function testPlugin() {
this.hooks.compilation.tap("TestPlugin", (compilation) => {
compilation.hooks.finishModules.tapAsync(
"TestPlugin",
(_modules, callback) => {
callback();
}
);
});
}
/** @type {import("../../../../"... | javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/index.js | test/configCases/hash/debug-hash/index.js | it("debug hash should works", function () {
var ids = [];
for(var i = 1; i <= 15; i++) {
var id = require("./files/file" + i + ".js");
expect(ids.indexOf(id)).toBe(-1);
ids.push(id);
}
});
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/webpack.config.js | test/configCases/hash/debug-hash/webpack.config.js | "use strict";
/** @type {import("../../../../").Configuration[]} */
module.exports = [
{
output: {
hashFunction: "debug"
}
}
];
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file15.js | test/configCases/hash/debug-hash/files/file15.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file1.js | test/configCases/hash/debug-hash/files/file1.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file13.js | test/configCases/hash/debug-hash/files/file13.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file10.js | test/configCases/hash/debug-hash/files/file10.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file2.js | test/configCases/hash/debug-hash/files/file2.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file7.js | test/configCases/hash/debug-hash/files/file7.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file5.js | test/configCases/hash/debug-hash/files/file5.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file14.js | test/configCases/hash/debug-hash/files/file14.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file3.js | test/configCases/hash/debug-hash/files/file3.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file12.js | test/configCases/hash/debug-hash/files/file12.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file6.js | test/configCases/hash/debug-hash/files/file6.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file9.js | test/configCases/hash/debug-hash/files/file9.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
webpack/webpack | https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/hash/debug-hash/files/file11.js | test/configCases/hash/debug-hash/files/file11.js | module.exports = module.id;
| javascript | MIT | d2a124db548cad6e84dffd93b502a4e74bfe2b6a | 2026-01-04T14:56:49.698101Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.