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 |
|---|---|---|---|---|---|---|---|---|
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/index.js | import {ns, ns2} from './reexports';
output = import('./async').then(mod => [ns.foo, ns2.foo].concat(mod.default));
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/async.js | import {ns, ns2} from './reexports';
export default [ns.foo, ns2.foo];
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/ns.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/async-named-import-ns-reexport/ns.js | export const foo = 42;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/index.js | import { b1 } from "./library/a.js";
output = b1
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/b2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/b2.js | sideEffect("b2");
export const b2 = import("./c");
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/b1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/b1.js | sideEffect("b1");
export const b1 = 2;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/c.js | // import styled from "styled-components";
export const c = 123;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-no-new-bundle/library/a.js | sideEffect("a");
export * from "./b1.js";
export * from "./b2.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/non-ascii-identifiers/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/non-ascii-identifiers/a.js | const ɵ2 = 1;
const ɵ3 = 2;
const ꝍ2 = 3
const ꝍ3 = 4
output = [ɵ2, ɵ3, ꝍ2, ꝍ3];
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-wrapped-bundle-unused/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-wrapped-bundle-unused/b.js | import "./c.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-wrapped-bundle-unused/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-wrapped-bundle-unused/c.js | sideEffect();
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-wrapped-bundle-unused/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-wrapped-bundle-unused/a.js | if (Date.now() < 0) {
require("./c.js");
}
import("./b.js");
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import-different/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import-different/a.js | import foo from "bar";
output = foo();
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import-different/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import-different/node_modules/bar/index.js | import {foo} from './foo.js';
export {bar} from './foo.js';
export default function() {
return foo;
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import-different/node_modules/bar/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import-different/node_modules/bar/foo.js | export const foo = 123;
export const bar = 456;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/export-intermediate-wrapped-reexports/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-intermediate-wrapped-reexports/async.js | export default import("./foo/foo.mjs")
.then(({ bar }) => bar);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import/a.js | import foo from "bar";
output = foo();
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import/node_modules/bar/index.js | import Foo from './foo.js';
export { default as Foo } from './foo.js';
export default function() {
return Foo;
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import/node_modules/bar/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-import/node_modules/bar/foo.js | export default 123;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-anonymous/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-anonymous/b.js | export default function() {
return 2;
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-anonymous/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/default-export-anonymous/a.js | import foo from './b';
output = foo();
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/a.js | if (Date.now() > 0) {
const bar = require("bar");
output = bar.default(2);
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/node_modules/bar/index.js | export {default} from "./other.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/node_modules/bar/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/node_modules/bar/foo.js | export default function foo(a) {
return a * a;
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/node_modules/bar/other.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wrap-excluded/node_modules/bar/other.js | export {default} from "./foo.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/index.js | import { key, foo } from "./library/index.js";
output = [key, foo];
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/types.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/types.js | sideEffect("types");
export { foo } from './foo.js';
export { bar } from './bar.js';
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/index.js | sideEffect("index");
import { key as thing } from "./key";
export { foo, bar } from "./types";
export var key = thing;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/bar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/bar.js | sideEffect("bar");
export var bar = "bar";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/foo.js | sideEffect("foo");
export var foo = "foo";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/key.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-chained/library/key.js | sideEffect("key");
export var key = "key";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-import/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-import/b.js | export var foo = 2;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-import/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/renamed-import/a.js | import {foo as bar} from './b';
output = bar;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-no-unknown-objects/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-no-unknown-objects/index.js | import {foo} from './a';
foo.bar = 42;
output = window.bar;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-no-unknown-objects/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-no-unknown-objects/a.js | export const foo = window;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-package-redirect-down/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-package-redirect-down/index.js | import {one} from 'foo/bar'
output = one;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-package-redirect-down/node_modules/foo/bar/baz/real-bar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-package-redirect-down/node_modules/foo/bar/baz/real-bar.js | export const one = 1;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-class-wrapped/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-class-wrapped/b.js | export default class Log {}
Log.VERSION = 1234;
sideEffectNoop(module)
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-class-wrapped/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-class-wrapped/a.js | import b from "./b.js";
output = b;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all/b.js | export * from './c';
export var baz = 1;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all/c.js | export var foo = 2, bar = 3;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-all/a.js | import {foo, bar, baz} from './b';
output = foo + bar + baz;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/b2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/b2.js | import { foo } from "./c.js";
export default "b2:" + foo;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/d.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/d.js | export const foo = "foo";
export const bar = "bar";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/b1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/b1.js | import { foo } from "./c.js";
export default "b1:" + foo;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/c.js | export {foo, bar} from "./d.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export/a.js | output = Promise.all([import("./b1.js").then(m => m.default), import("./b2.js").then(m => m.default)]);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/b.js | import { bar } from "./library/index.js";
output = [bar];
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/c.js | import { foo, bar } from "./library/index.js";
output = [foo, bar];
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/a.js | import { foo } from "./library/index.js";
output = [foo];
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/library/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/library/index.js | sideEffect("index");
export {default as foo} from "./other.js";
export * from "./other.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/library/other.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-namespace-same/library/other.js | sideEffect("other");
export default "foo";
export const bar = "bar";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-multiple-wildcards/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-multiple-wildcards/a.js | import * as all from '../re-export-all-multiple/b'
// Don't do the the sum here to prevent treeshaking optimizations
output = all
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/b.js | export {default as createAndFireEvent} from './c.js';
export const b = 1;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/async.js | import {createAndFireEvent} from './b.js';
var createAndFireEventOnAtlaskit = createAndFireEvent('async');
export default () => createAndFireEventOnAtlaskit();
export const a = 1;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/c.js | export default function(name) {
return () => name;
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/ancestor-reexport/a.js | import {createAndFireEvent} from './b.js';
const createAndFireEventOnAtlaskit = createAndFireEvent('index');
output = import('./async.js').then(m => [
createAndFireEventOnAtlaskit(),
m.default(),
]);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/async-internalize-unused/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/async-internalize-unused/b.js | import("./c.js");
export default "b";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/async-internalize-unused/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/async-internalize-unused/c.js | export default "c";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/async-internalize-unused/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/async-internalize-unused/a.js | import c from "./c.js";
import b from "./b.js";
output = b + c;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/named-export-variable-rename-wrapped/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/named-export-variable-rename-wrapped/b.js | var bar = module && 2;
export {bar as foo};
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/named-export-variable-rename-wrapped/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/named-export-variable-rename-wrapped/a.js | import {foo} from './b';
output = foo;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/index.1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/index.1.js | output = import('./library/Toolbar');
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/index.2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/index.2.js | import * as x from './library/emoji';
output = import('./library/Toolbar').then(v => [v, x]);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/emoji.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/emoji.js | export * from './emojiStyles';
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/Toolbar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/Toolbar.js | import { gridSize } from './theme';
export var akGridSize = gridSize();
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/emojiStyles.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/emojiStyles.js | export { akEmojiSelectedBackgroundColor } from './emojiStylesShared';
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/themeConstants.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/themeConstants.js | export var borderRadius = function () { return 3; };
export var gridSize = function () { return 8; };
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/themeColors.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/themeColors.js | export var N30 = '#EBECF0';
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/theme.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/theme.js | export * as colors from './themeColors';
export * from './themeConstants'; | javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/emojiStylesShared.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add-namespace/library/emojiStylesShared.js | import { borderRadius, colors } from './theme';
export var noDialogContainerBorderRadius = borderRadius() + "px";
export var akEmojiSelectedBackgroundColor = colors.N30;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/b.js | export * from "./c.js";
export * from "./d.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/d.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/d.js | export function run(m) {
if (!module || m) return false;
else return true;
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/c.js | import { run } from "./d.js";
var logger = run(module) ? "a" : "b";
export { logger };
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-wrapped-bailout/a.js | import { logger, run } from "./b.js";
output = [logger, run()];
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/index.js | import _default, {other} from './a.js';
output = import('./async').then(mod => mod.default);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/b.js | export default 42;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/async.js | import _default, {other} from './a.js';
sideEffectNoop(_default, other);
export default _default;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/c.js | export default 99;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/no-reexport-default/a.js | export {default} from './b.js';
export * from './b.js';
export {default as other} from './c.js';
export * from './c.js';
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/b.js | import Foo from "lib";
export default Foo;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/a.js | import Foo from "lib";
output = import("./b.js").then(v => ([Foo, v]));
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/node_modules/lib/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/node_modules/lib/index.js | export default 1234;
export {default as other} from './lib.js';
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/node_modules/lib/lib.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-re-exports-multiple-dynamic/node_modules/lib/lib.js | export default 5678;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/dynamic-import/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/dynamic-import/b.js | import {compute} from './c'
export var foo = compute(2, 1);
export var bar = compute(3, 1);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/dynamic-import/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/dynamic-import/c.js | export function compute(x, q) {
return q ? x * 2 : x / 2
}
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/dynamic-import/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/dynamic-import/a.js | import {compute} from './c'
var b = import('./b');
output = b.then(function ({foo, bar}) {
return compute(foo, 0) + compute(bar, 0);
});
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-external/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-external/b.js | export * from "lodash";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-external/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-namespace-external/a.js | import * as lodash from "./b";
let x = lodash;
export default x.add(10,2);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/b.js | export * from './c';
export var baz = 1;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/d.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/d.js | export var d = 1;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/c.js | export var foo = 2, bar = 3;
export * from './d'
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-multiple/a.js | import {foo, bar, baz, d} from './b';
output = foo + bar + baz + d;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/b2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/b2.js | import { foo } from "./c.js";
export default "b2:" + foo;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/d.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/d.js | export const foo = "foo";
export const bar = "bar";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/b1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/b1.js | import { foo } from "./c.js";
export default "b1:" + foo;
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/c.js | export * from "./d.js";
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-cross-bundle-re-export-wildcard/a.js | output = Promise.all([import("./b1.js").then(m => m.default), import("./b2.js").then(m => m.default)]);
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-pseudo/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-pseudo/b.js | import { foo, bar } from "./c";
export { foo, bar };
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
parcel-bundler/parcel | https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-pseudo/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-pseudo/c.js | export const foo = 'foo';
| javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.