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/scss-global-data/.sassrc.js
packages/core/integration-tests/test/integration/scss-global-data/.sassrc.js
module.exports = { data: "$color: red;", silenceDeprecations: ['legacy-js-api'] }
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/less-webpack-import-error/index.js
packages/core/integration-tests/test/integration/less-webpack-import-error/index.js
require('./index.less') module.exports = function() { }
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/env-node-replacements/index.js
packages/core/integration-tests/test/integration/env-node-replacements/index.js
const fs = require('fs'); const path = require('path'); const otherFunction = require('./other/function') const subFunction = require('./sub/index') module.exports = function () { const data = fs.readFileSync(path.join(__dirname, 'data', 'test.txt'), 'utf8') const firstDirnameTest = path.join(__dirname, 'data') ...
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/env-node-replacements/sub/index.js
packages/core/integration-tests/test/integration/env-node-replacements/sub/index.js
module.exports = function () { return { dirname: __dirname, filename: __filename } }
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/env-node-replacements/other/function.js
packages/core/integration-tests/test/integration/env-node-replacements/other/function.js
const fs = require('fs'); const path = require('path'); module.exports = function () { return fs.readFileSync(path.join(__dirname, '..', 'data', 'test.txt'), 'utf8') }
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/resolve-symlinked-node_modules-structure/index.js
packages/core/integration-tests/test/integration/resolve-symlinked-node_modules-structure/index.js
import {answer} from 'library'; export default answer;
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/resolve-symlinked-node_modules-structure/node_modules/.origin/library@1.0.0/node_modules/library/src/index.js
packages/core/integration-tests/test/integration/resolve-symlinked-node_modules-structure/node_modules/.origin/library@1.0.0/node_modules/library/src/index.js
import answer from 'library-dep'; export {answer};
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/resolve-symlinked-node_modules-structure/node_modules/.origin/library-dep@1.0.0/node_modules/library-dep/src/index.js
packages/core/integration-tests/test/integration/resolve-symlinked-node_modules-structure/node_modules/.origin/library-dep@1.0.0/node_modules/library-dep/src/index.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/proxyrc-ts/index.js
packages/core/integration-tests/test/integration/proxyrc-ts/index.js
module.exports = function () { return 'Hello, Parcel.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/include_builtins-browser/main.js
packages/core/integration-tests/test/integration/include_builtins-browser/main.js
import path from "path"; import fs from "fs"; module.exports = function () { return [fs, path.join("app", "index.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/js-unused-import-specifier/b.js
packages/core/integration-tests/test/integration/js-unused-import-specifier/b.js
export const used = 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/js-unused-import-specifier/a.js
packages/core/integration-tests/test/integration/js-unused-import-specifier/a.js
output = used; import {used, unused} from "./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/hmr-css-modules/index.jsx
packages/core/integration-tests/test/integration/hmr-css-modules/index.jsx
import * as styles from "./index.module.css"; import React from 'react'; export const Hello = () => <div classNames={styles.hello}>hello</div>;
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/webpack-import-syntax-error/index.js
packages/core/integration-tests/test/integration/webpack-import-syntax-error/index.js
import test from 'node-loader!./index.js'; export default function() { return 'test'; }
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/json5/index.js
packages/core/integration-tests/test/integration/json5/index.js
var local = require('./local.json5'); module.exports = function () { return local.a + local.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/babel-node-modules/index.js
packages/core/integration-tests/test/integration/babel-node-modules/index.js
import Foo from 'foo'; export {Foo}; export class Bar {} export const t = typeof 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/babel-node-modules/node_modules/foo/index.js
packages/core/integration-tests/test/integration/babel-node-modules/node_modules/foo/index.js
export default class 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/process/index.js
packages/core/integration-tests/test/integration/process/index.js
process.browser = false module.exports = function () { return process.browser && test(process.browser); }; function test(val) { return val; }
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/service-worker/dynamic-import.js
packages/core/integration-tests/test/integration/service-worker/dynamic-import.js
import('./b/worker-outside');
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/service-worker/module-worker.js
packages/core/integration-tests/test/integration/service-worker/module-worker.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/service-worker/manifest.js
packages/core/integration-tests/test/integration/service-worker/manifest.js
navigator.serviceWorker.register(new URL('manifest-worker.js', import.meta.url), {type: '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/service-worker/error.js
packages/core/integration-tests/test/integration/service-worker/error.js
navigator.serviceWorker.register(new URL('module-worker.js', import.meta.url));
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/service-worker/scope.js
packages/core/integration-tests/test/integration/service-worker/scope.js
navigator.serviceWorker.register(new URL('module-worker.js', import.meta.url), {scope: 'foo', type: '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/service-worker/dynamic-import-index.js
packages/core/integration-tests/test/integration/service-worker/dynamic-import-index.js
navigator.serviceWorker.register(new URL('dynamic-import.js', import.meta.url), {type: '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/service-worker/manifest-worker.js
packages/core/integration-tests/test/integration/service-worker/manifest-worker.js
import {manifest, version} from '@parcel/service-worker'; output(manifest, version);
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/service-worker/module.js
packages/core/integration-tests/test/integration/service-worker/module.js
navigator.serviceWorker.register(new URL('module-worker.js', import.meta.url), {type: '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/service-worker/a/index.js
packages/core/integration-tests/test/integration/service-worker/a/index.js
import '../b/nested' navigator.serviceWorker.register(new URL('../b/worker-outside.js', import.meta.url));
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/service-worker/b/worker-outside.js
packages/core/integration-tests/test/integration/service-worker/b/worker-outside.js
self.addEventListener('message', () => {});
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/service-worker/b/nested/index.js
packages/core/integration-tests/test/integration/service-worker/b/nested/index.js
navigator.serviceWorker.register(new URL('worker-nested.js', import.meta.url), { scope: './' });
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/service-worker/b/nested/worker-nested.js
packages/core/integration-tests/test/integration/service-worker/b/nested/worker-nested.js
self.addEventListener('message', () => {});
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/rust-cargo/src/index.js
packages/core/integration-tests/test/integration/rust-cargo/src/index.js
module.exports = import('./lib.rs').then(function ({add}) { return add(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/worker-shared-page/index.js
packages/core/integration-tests/test/integration/worker-shared-page/index.js
import './large'; new Worker(new URL('worker.js', import.meta.url), {type: '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/worker-shared-page/large.js
packages/core/integration-tests/test/integration/worker-shared-page/large.js
const lorem = "lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor lorem ipsum dolor...
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
true
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/worker-shared-page/async.js
packages/core/integration-tests/test/integration/worker-shared-page/async.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/worker-shared-page/worker.js
packages/core/integration-tests/test/integration/worker-shared-page/worker.js
import './large';
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/scss-empty/index.js
packages/core/integration-tests/test/integration/scss-empty/index.js
require('./index.scss'); module.exports = 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/shared-sibling-entries/shared.js
packages/core/integration-tests/test/integration/shared-sibling-entries/shared.js
import './shared.css'; export default 'shared';
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/env-nodeenv/index.js
packages/core/integration-tests/test/integration/env-nodeenv/index.js
module.exports = function () { return process.env.NODE_ENV + ":" + process.env.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/sourcemap-comments/index.js
packages/core/integration-tests/test/integration/sourcemap-comments/index.js
console.log('foo'); // comment console.log('bar'); /* block comment line */ console.log('baz'); /* multi line block comment */ console.log('idhf');
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/html-isolate-script/b.js
packages/core/integration-tests/test/integration/html-isolate-script/b.js
import('./c.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/html-isolate-script/c.js
packages/core/integration-tests/test/integration/html-isolate-script/c.js
output('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/html-isolate-script/a.js
packages/core/integration-tests/test/integration/html-isolate-script/a.js
import('./c.js'); output('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/pipeline-unknown/b.js
packages/core/integration-tests/test/integration/pipeline-unknown/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/pipeline-unknown/a.js
packages/core/integration-tests/test/integration/pipeline-unknown/a.js
import { x } from "strange-pipeline:./b.js"; export default 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/sourcemap-sourcemappingurl/index.js
packages/core/integration-tests/test/integration/sourcemap-sourcemappingurl/index.js
console.log('hello');
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/css-url-quote/index.js
packages/core/integration-tests/test/integration/css-url-quote/index.js
require('./index.css'); module.exports = 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/shared-exports-for-sibling-descendant/wraps.js
packages/core/integration-tests/test/integration/shared-exports-for-sibling-descendant/wraps.js
import lodash from 'lodash'; export default lodash.add(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/shared-exports-for-sibling-descendant/index.js
packages/core/integration-tests/test/integration/shared-exports-for-sibling-descendant/index.js
export default Promise.all([ import('./a').then(mod => mod.default), import('./b').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/shared-exports-for-sibling-descendant/b.js
packages/core/integration-tests/test/integration/shared-exports-for-sibling-descendant/b.js
export {default} from './wraps';
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/shared-exports-for-sibling-descendant/grandchild.js
packages/core/integration-tests/test/integration/shared-exports-for-sibling-descendant/grandchild.js
import lodash from 'lodash'; export default lodash.add(1, 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/shared-exports-for-sibling-descendant/child.js
packages/core/integration-tests/test/integration/shared-exports-for-sibling-descendant/child.js
export default import('./grandchild').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/shared-exports-for-sibling-descendant/a.js
packages/core/integration-tests/test/integration/shared-exports-for-sibling-descendant/a.js
import wraps from './wraps'; export default import('./child').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/shared-exports-for-sibling-descendant/scope-hoisting.js
packages/core/integration-tests/test/integration/shared-exports-for-sibling-descendant/scope-hoisting.js
output = Promise.all([ import('./a').then(mod => mod.default), import('./b').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/env-binary-in-expression/index.js
packages/core/integration-tests/test/integration/env-binary-in-expression/index.js
const existVar = 'ABC' in process.env ? 'correct' : 'incorrect'; const notExistVar = 'DEF' in process.env ? 'incorrect' : 'correct'; module.exports = { existVar, notExistVar, };
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/compressors/index.js
packages/core/integration-tests/test/integration/compressors/index.js
import _ from 'lodash'; console.log(_);
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/js-import-reexport-dep-order/index.js
packages/core/integration-tests/test/integration/js-import-reexport-dep-order/index.js
export * from './a' export {b} from './b' 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/js-import-reexport-dep-order/b.js
packages/core/integration-tests/test/integration/js-import-reexport-dep-order/b.js
sideEffect("b"); export const b = "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/js-import-reexport-dep-order/c.js
packages/core/integration-tests/test/integration/js-import-reexport-dep-order/c.js
sideEffect("c"); export const c = "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/js-import-reexport-dep-order/a.js
packages/core/integration-tests/test/integration/js-import-reexport-dep-order/a.js
sideEffect("a"); export const 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/jsx-pragma-tsconfig/index.js
packages/core/integration-tests/test/integration/jsx-pragma-tsconfig/index.js
module.exports = <><div /></>;
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/workers/shared-worker.js
packages/core/integration-tests/test/integration/workers/shared-worker.js
onconnect = (e) => { let port = e.ports[0]; port.addEventListener('message', ()=> {}); port.start(); }
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/workers/index.js
packages/core/integration-tests/test/integration/workers/index.js
exports.commonFunction = require('./common').commonFunction; exports.startWorker = require('./worker-client').startWorker; exports.startSharedWorker = require('./worker-client').startSharedWorker; exports.feature = require('./feature');
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/workers/common.js
packages/core/integration-tests/test/integration/workers/common.js
// required by worker and index, must be bundled separately exports.commonFunction = function (source) { return 'commonText' + source; };
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/workers/index-alternative.js
packages/core/integration-tests/test/integration/workers/index-alternative.js
exports.startWorker = require('./worker-client').startWorker; exports.startSharedWorker = require('./worker-client').startSharedWorker; exports.commonFunction = require('./common').commonFunction; exports.feature = require('./feature');
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/workers/feature.js
packages/core/integration-tests/test/integration/workers/feature.js
const workerClient = require('./worker-client'); workerClient.startWorker();
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/workers/worker-client.js
packages/core/integration-tests/test/integration/workers/worker-client.js
const commonText = require('./common').commonFunction('Index'); navigator.serviceWorker.register(new URL('service-worker.js', import.meta.url), { scope: './' }); exports.startWorker = function() { const worker = new Worker(new URL('worker.js', import.meta.url), {type: 'module', name: 'myName'}); worker.postMessag...
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/workers/worker.js
packages/core/integration-tests/test/integration/workers/worker.js
const commonText = require('./common').commonFunction('Worker'); self.addEventListener('message', () => { self.postMessage(commonText); });
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/workers/service-worker.js
packages/core/integration-tests/test/integration/workers/service-worker.js
self.addEventListener('message', () => {});
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/svg-react-config/react.js
packages/core/integration-tests/test/integration/svg-react-config/react.js
const { h } = require('preact'); const PreactIcon = require('./icon.svg'); module.exports = <PreactIcon />;
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/css-module-self-references/a/index.js
packages/core/integration-tests/test/integration/css-module-self-references/a/index.js
import foo from '../bar.module.css'; console.log('a', 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/css-module-self-references/b/index.js
packages/core/integration-tests/test/integration/css-module-self-references/b/index.js
import foo from '../bar.module.css'; console.log('b', 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/glob-absolute/packages/child/index.js
packages/core/integration-tests/test/integration/glob-absolute/packages/child/index.js
const rootVars = require('/dir/*.js'); module.exports = rootVars.a + rootVars.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/glob-absolute/dir/b.js
packages/core/integration-tests/test/integration/glob-absolute/dir/b.js
module.exports = 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/glob-absolute/dir/a.js
packages/core/integration-tests/test/integration/glob-absolute/dir/a.js
module.exports = 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/env/index.js
packages/core/integration-tests/test/integration/env/index.js
module.exports = function () { return process.env.NODE_ENV + test(process.env.NODE_ENV); }; function test(str) { return ':' + str; }
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/html-svg-script/script-a.js
packages/core/integration-tests/test/integration/html-svg-script/script-a.js
console.log('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/html-svg-script/script-b.js
packages/core/integration-tests/test/integration/html-svg-script/script-b.js
console.log('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/shared-many-esm/b.js
packages/core/integration-tests/test/integration/shared-many-esm/b.js
import 'lodash/cloneDeep'; import 'lodash/pick'; import 'lodash/omit'; import 'lodash/difference';
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/shared-many-esm/g.js
packages/core/integration-tests/test/integration/shared-many-esm/g.js
import 'lodash/fill'; import 'lodash/difference';
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/shared-many-esm/d.js
packages/core/integration-tests/test/integration/shared-many-esm/d.js
import 'lodash/omit'; import 'lodash/flatten';
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/shared-many-esm/f.js
packages/core/integration-tests/test/integration/shared-many-esm/f.js
import 'lodash/drop'; import 'lodash/fill';
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/shared-many-esm/e.js
packages/core/integration-tests/test/integration/shared-many-esm/e.js
import 'lodash/flatten'; import 'lodash/drop';
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/shared-many-esm/c.js
packages/core/integration-tests/test/integration/shared-many-esm/c.js
import 'lodash/pick'; import 'lodash/omit';
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/shared-many-esm/a.js
packages/core/integration-tests/test/integration/shared-many-esm/a.js
import 'lodash/cloneDeep'; import 'lodash/assign';
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/dynamic-hoist-deep/1.js
packages/core/integration-tests/test/integration/dynamic-hoist-deep/1.js
export 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/dynamic-hoist-deep/index.js
packages/core/integration-tests/test/integration/dynamic-hoist-deep/index.js
export default Promise.all([ import('./a'), import('./b') ]).then(([a, b]) => { return Promise.all([a.default, b.default]) }).then(([v1, v2]) => { return v1.default === v2.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/dynamic-hoist-deep/b.js
packages/core/integration-tests/test/integration/dynamic-hoist-deep/b.js
export {default} from './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/dynamic-hoist-deep/c.js
packages/core/integration-tests/test/integration/dynamic-hoist-deep/c.js
export default import('./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/dynamic-hoist-deep/a.js
packages/core/integration-tests/test/integration/dynamic-hoist-deep/a.js
export {default} from './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/js-require-import-different/addons.js
packages/core/integration-tests/test/integration/js-require-import-different/addons.js
export * from "./hooks";
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/js-require-import-different/index.js
packages/core/integration-tests/test/integration/js-require-import-different/index.js
import { StoryStore } from './store'; output = [StoryStore, require('./addons')];
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/js-require-import-different/hooks.js
packages/core/integration-tests/test/integration/js-require-import-different/hooks.js
export var HooksContext = 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/js-require-import-different/store.js
packages/core/integration-tests/test/integration/js-require-import-different/store.js
import { HooksContext } from "./addons"; export var StoryStore = HooksContext;
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/babel-core-js/index.js
packages/core/integration-tests/test/integration/babel-core-js/index.js
import "core-js"; export async function Bar() {} globalThis.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/include_builtins-node/main.js
packages/core/integration-tests/test/integration/include_builtins-node/main.js
import path from "path"; import fs from "fs"; module.exports = function () { return [fs, path.join("app", "index.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/commonjs-template-literal-plain/index.js
packages/core/integration-tests/test/integration/commonjs-template-literal-plain/index.js
const _ = require(`lodash`); module.exports = function (a, b) { return _.add(a, 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/less-url/index.js
packages/core/integration-tests/test/integration/less-url/index.js
require('./index.less'); module.exports = 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/jsx-react-alias/index.js
packages/core/integration-tests/test/integration/jsx-react-alias/index.js
module.exports = <div />;
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/stylus-url/index.js
packages/core/integration-tests/test/integration/stylus-url/index.js
require('./index.styl'); module.exports = 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/worker-import-scripts/imported2.js
packages/core/integration-tests/test/integration/worker-import-scripts/imported2.js
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false