├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── docs ├── circular.md ├── cli.md ├── compiler.md ├── dev-middleware.md ├── dev-server.md ├── hmr.md ├── live-bindings.md ├── nollup-hooks.md ├── nolluprc.md ├── options.md ├── plugins.md ├── rollup-config.md └── sdk.md ├── examples ├── README.md ├── example-amd │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── my-external-module-dynamic.js │ │ └── my-external-module.js │ ├── rollup.config.js │ └── src │ │ ├── dynamic-import-main.js │ │ ├── multiple-export-main.js │ │ ├── my-dynamic-module.js │ │ └── single-export-main.js ├── example-circular │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── A1.js │ │ ├── A2.js │ │ ├── A3.js │ │ ├── B.js │ │ └── main.js ├── example-dynamic-import │ ├── .babelrc │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Counter.css │ │ ├── Counter.js │ │ └── main.js ├── example-emit-chunk │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── main.js │ │ ├── shared.js │ │ ├── worker-color.js │ │ └── worker-size.js ├── example-globals │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ └── main.js ├── example-https │ ├── .gitignore │ ├── cert │ │ ├── example.crt │ │ └── example.key │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ └── main.js ├── example-live-bindings │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── counter.js │ │ └── main.js ├── example-mjs-config │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.mjs │ └── src │ │ └── main.js ├── example-multi-bundle │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── entry-a.js │ │ ├── entry-b.js │ │ ├── message-a.js │ │ └── message-b.js ├── example-preact │ ├── .babelrc │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Counter.css │ │ ├── Counter.js │ │ ├── Internal.js │ │ ├── Switch.css │ │ ├── Switch.js │ │ └── main.js ├── example-public-path │ ├── .babelrc │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Counter.css │ │ ├── Counter.js │ │ └── main.js ├── example-react-esinstall │ ├── .babelrc │ ├── .gitignore │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Counter.css │ │ ├── Counter.js │ │ ├── Internal.js │ │ └── main.js ├── example-react-hot-loader │ ├── .babelrc │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Counter.css │ │ ├── Counter.js │ │ ├── Internal.js │ │ ├── Switch.css │ │ ├── Switch.js │ │ └── main.js ├── example-react-refresh │ ├── .babelrc │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── Counter.css │ │ ├── Counter.js │ │ ├── Internal.js │ │ └── main.js ├── example-single-file-bundle │ ├── .gitignore │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── main.js │ │ └── message.js ├── example-typescript │ ├── package.json │ ├── public │ │ └── index.html │ ├── rollup.config.ts │ └── src │ │ ├── enum.ts │ │ └── main.ts └── example-virtual-index-html │ ├── .gitignore │ ├── package.json │ ├── rollup.config.js │ └── src │ ├── main.css │ └── main.js ├── jsconfig.json ├── lib ├── cli.js ├── dev-middleware.js ├── dev-server.js ├── impl │ ├── AcornParser.js │ ├── ConfigLoader.js │ ├── NollupCodeGenerator.js │ ├── NollupCompiler.js │ ├── NollupContext.js │ ├── NollupImportExportResolver.js │ ├── NollupLiveBindingsResolver.js │ ├── ParseError.js │ ├── PluginContainer.js │ ├── PluginContext.js │ ├── PluginErrorHandler.js │ ├── PluginLifecycle.js │ ├── PluginMeta.js │ ├── PluginUtils.js │ ├── RollupConfigContainer.js │ ├── types.js │ └── utils.js ├── index.js ├── plugin-hmr.js └── sdk.js ├── package.json └── test ├── cases ├── DevMiddleware.js ├── ErrorHandling.js ├── Externals.js ├── ImportExportResolver.js ├── PluginHMR.js ├── RequireUsage.js ├── Scenarios.js ├── StaticDynamicImportOptimisation.js ├── VirtualModules.js ├── api │ ├── context.js │ ├── generate.js │ ├── hooks.js │ └── nollup_hooks.js ├── misc.js └── options │ ├── context.js │ ├── input.js │ ├── moduleContext.js │ ├── output-assetFileNames.js │ ├── output-chunkFileNames.js │ ├── output-dir.js │ ├── output-entryFileNames.js │ ├── output-file.js │ └── output-format.js ├── nollup.js ├── packages ├── circular-deep │ ├── A.js │ ├── B.js │ ├── C.js │ ├── index.js │ └── message.js ├── circular-export-all-from │ ├── A.js │ ├── index.js │ └── letters.js ├── circular-export-fn-as │ ├── index.js │ └── other.js ├── circular-export-from-infinite-loop │ ├── A.js │ ├── index.js │ └── letters.js ├── circular-export-from │ ├── A.js │ ├── index.js │ └── letters.js ├── circular-hoist-class │ ├── index.js │ └── other.js ├── circular-hoist-fn-require │ ├── dynamic.js │ ├── index.js │ └── other.js ├── circular-hoist-var-patterns-extra │ ├── index.js │ └── other.js ├── circular-hoist-var-patterns │ ├── index.js │ └── other.js ├── circular-shared-import-timing │ ├── index.js │ ├── shared.js │ └── two.js ├── circular │ ├── A1.js │ ├── A2.js │ ├── A3.js │ ├── B.js │ └── index.js ├── empty-source-mapping │ ├── content.json │ └── index.js ├── export-all │ ├── impl.js │ ├── index-proxy.js │ └── index.js ├── export-checks │ ├── alias-dep-from.js │ ├── dep-from.js │ └── index.js ├── export-declaration-late-binding │ ├── index.js │ └── messages.js ├── export-default-from │ ├── impl.js │ └── index.js ├── export-full-live-bindings │ ├── counter.js │ └── index.js ├── export-import-delayed │ ├── impl.js │ └── index.js ├── export-same-export-as-from │ ├── hello.js │ ├── index.js │ └── world.js ├── export-synthetic-all-from │ ├── impl.js │ └── index.js ├── hello-world │ └── index.js └── multi-module │ ├── index.js │ ├── message │ ├── hello.js │ ├── index.js │ └── world.js │ └── sum │ ├── index.js │ ├── one.js │ ├── three.js │ └── two.js └── utils ├── evaluator-worker.js ├── evaluator.js └── wait.js /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/README.md -------------------------------------------------------------------------------- /docs/circular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/circular.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/compiler.md -------------------------------------------------------------------------------- /docs/dev-middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/dev-middleware.md -------------------------------------------------------------------------------- /docs/dev-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/dev-server.md -------------------------------------------------------------------------------- /docs/hmr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/hmr.md -------------------------------------------------------------------------------- /docs/live-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/live-bindings.md -------------------------------------------------------------------------------- /docs/nollup-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/nollup-hooks.md -------------------------------------------------------------------------------- /docs/nolluprc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/nolluprc.md -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/options.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/rollup-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/rollup-config.md -------------------------------------------------------------------------------- /docs/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/docs/sdk.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/example-amd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/package.json -------------------------------------------------------------------------------- /examples/example-amd/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/public/index.html -------------------------------------------------------------------------------- /examples/example-amd/public/my-external-module-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/public/my-external-module-dynamic.js -------------------------------------------------------------------------------- /examples/example-amd/public/my-external-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/public/my-external-module.js -------------------------------------------------------------------------------- /examples/example-amd/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/rollup.config.js -------------------------------------------------------------------------------- /examples/example-amd/src/dynamic-import-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/src/dynamic-import-main.js -------------------------------------------------------------------------------- /examples/example-amd/src/multiple-export-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/src/multiple-export-main.js -------------------------------------------------------------------------------- /examples/example-amd/src/my-dynamic-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/src/my-dynamic-module.js -------------------------------------------------------------------------------- /examples/example-amd/src/single-export-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-amd/src/single-export-main.js -------------------------------------------------------------------------------- /examples/example-circular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-circular/package.json -------------------------------------------------------------------------------- /examples/example-circular/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-circular/public/index.html -------------------------------------------------------------------------------- /examples/example-circular/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-circular/rollup.config.js -------------------------------------------------------------------------------- /examples/example-circular/src/A1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-circular/src/A1.js -------------------------------------------------------------------------------- /examples/example-circular/src/A2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-circular/src/A2.js -------------------------------------------------------------------------------- /examples/example-circular/src/A3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-circular/src/A3.js -------------------------------------------------------------------------------- /examples/example-circular/src/B.js: -------------------------------------------------------------------------------- 1 | export default function () { 2 | console.log('B'); 3 | } -------------------------------------------------------------------------------- /examples/example-circular/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-circular/src/main.js -------------------------------------------------------------------------------- /examples/example-dynamic-import/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/.babelrc -------------------------------------------------------------------------------- /examples/example-dynamic-import/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/package.json -------------------------------------------------------------------------------- /examples/example-dynamic-import/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/public/index.html -------------------------------------------------------------------------------- /examples/example-dynamic-import/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/rollup.config.js -------------------------------------------------------------------------------- /examples/example-dynamic-import/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /examples/example-dynamic-import/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/src/App.js -------------------------------------------------------------------------------- /examples/example-dynamic-import/src/Counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/src/Counter.css -------------------------------------------------------------------------------- /examples/example-dynamic-import/src/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/src/Counter.js -------------------------------------------------------------------------------- /examples/example-dynamic-import/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-dynamic-import/src/main.js -------------------------------------------------------------------------------- /examples/example-emit-chunk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-emit-chunk/package.json -------------------------------------------------------------------------------- /examples/example-emit-chunk/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-emit-chunk/public/index.html -------------------------------------------------------------------------------- /examples/example-emit-chunk/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-emit-chunk/rollup.config.js -------------------------------------------------------------------------------- /examples/example-emit-chunk/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-emit-chunk/src/main.js -------------------------------------------------------------------------------- /examples/example-emit-chunk/src/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-emit-chunk/src/shared.js -------------------------------------------------------------------------------- /examples/example-emit-chunk/src/worker-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-emit-chunk/src/worker-color.js -------------------------------------------------------------------------------- /examples/example-emit-chunk/src/worker-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-emit-chunk/src/worker-size.js -------------------------------------------------------------------------------- /examples/example-globals/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-globals/package.json -------------------------------------------------------------------------------- /examples/example-globals/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-globals/public/index.html -------------------------------------------------------------------------------- /examples/example-globals/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-globals/rollup.config.js -------------------------------------------------------------------------------- /examples/example-globals/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-globals/src/main.js -------------------------------------------------------------------------------- /examples/example-https/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /examples/example-https/cert/example.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-https/cert/example.crt -------------------------------------------------------------------------------- /examples/example-https/cert/example.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-https/cert/example.key -------------------------------------------------------------------------------- /examples/example-https/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-https/package.json -------------------------------------------------------------------------------- /examples/example-https/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-https/public/index.html -------------------------------------------------------------------------------- /examples/example-https/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-https/rollup.config.js -------------------------------------------------------------------------------- /examples/example-https/src/main.js: -------------------------------------------------------------------------------- 1 | document.body.textContent = 'Hello from https'; -------------------------------------------------------------------------------- /examples/example-live-bindings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-live-bindings/package.json -------------------------------------------------------------------------------- /examples/example-live-bindings/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-live-bindings/public/index.html -------------------------------------------------------------------------------- /examples/example-live-bindings/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-live-bindings/rollup.config.js -------------------------------------------------------------------------------- /examples/example-live-bindings/src/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-live-bindings/src/counter.js -------------------------------------------------------------------------------- /examples/example-live-bindings/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-live-bindings/src/main.js -------------------------------------------------------------------------------- /examples/example-mjs-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-mjs-config/package.json -------------------------------------------------------------------------------- /examples/example-mjs-config/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-mjs-config/public/index.html -------------------------------------------------------------------------------- /examples/example-mjs-config/rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-mjs-config/rollup.config.mjs -------------------------------------------------------------------------------- /examples/example-mjs-config/src/main.js: -------------------------------------------------------------------------------- 1 | document.body.textContent = 'Hello World!'; -------------------------------------------------------------------------------- /examples/example-multi-bundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-multi-bundle/package.json -------------------------------------------------------------------------------- /examples/example-multi-bundle/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-multi-bundle/public/index.html -------------------------------------------------------------------------------- /examples/example-multi-bundle/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-multi-bundle/rollup.config.js -------------------------------------------------------------------------------- /examples/example-multi-bundle/src/entry-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-multi-bundle/src/entry-a.js -------------------------------------------------------------------------------- /examples/example-multi-bundle/src/entry-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-multi-bundle/src/entry-b.js -------------------------------------------------------------------------------- /examples/example-multi-bundle/src/message-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-multi-bundle/src/message-a.js -------------------------------------------------------------------------------- /examples/example-multi-bundle/src/message-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-multi-bundle/src/message-b.js -------------------------------------------------------------------------------- /examples/example-preact/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/.babelrc -------------------------------------------------------------------------------- /examples/example-preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/package.json -------------------------------------------------------------------------------- /examples/example-preact/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/public/index.html -------------------------------------------------------------------------------- /examples/example-preact/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/rollup.config.js -------------------------------------------------------------------------------- /examples/example-preact/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /examples/example-preact/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/src/App.js -------------------------------------------------------------------------------- /examples/example-preact/src/Counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/src/Counter.css -------------------------------------------------------------------------------- /examples/example-preact/src/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/src/Counter.js -------------------------------------------------------------------------------- /examples/example-preact/src/Internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/src/Internal.js -------------------------------------------------------------------------------- /examples/example-preact/src/Switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/src/Switch.css -------------------------------------------------------------------------------- /examples/example-preact/src/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/src/Switch.js -------------------------------------------------------------------------------- /examples/example-preact/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-preact/src/main.js -------------------------------------------------------------------------------- /examples/example-public-path/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/.babelrc -------------------------------------------------------------------------------- /examples/example-public-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/package.json -------------------------------------------------------------------------------- /examples/example-public-path/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/public/index.html -------------------------------------------------------------------------------- /examples/example-public-path/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/rollup.config.js -------------------------------------------------------------------------------- /examples/example-public-path/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /examples/example-public-path/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/src/App.js -------------------------------------------------------------------------------- /examples/example-public-path/src/Counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/src/Counter.css -------------------------------------------------------------------------------- /examples/example-public-path/src/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/src/Counter.js -------------------------------------------------------------------------------- /examples/example-public-path/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-public-path/src/main.js -------------------------------------------------------------------------------- /examples/example-react-esinstall/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/.babelrc -------------------------------------------------------------------------------- /examples/example-react-esinstall/.gitignore: -------------------------------------------------------------------------------- 1 | .babel_cache 2 | web_modules -------------------------------------------------------------------------------- /examples/example-react-esinstall/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/package.json -------------------------------------------------------------------------------- /examples/example-react-esinstall/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/public/index.html -------------------------------------------------------------------------------- /examples/example-react-esinstall/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/rollup.config.js -------------------------------------------------------------------------------- /examples/example-react-esinstall/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /examples/example-react-esinstall/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/src/App.js -------------------------------------------------------------------------------- /examples/example-react-esinstall/src/Counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/src/Counter.css -------------------------------------------------------------------------------- /examples/example-react-esinstall/src/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/src/Counter.js -------------------------------------------------------------------------------- /examples/example-react-esinstall/src/Internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/src/Internal.js -------------------------------------------------------------------------------- /examples/example-react-esinstall/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-esinstall/src/main.js -------------------------------------------------------------------------------- /examples/example-react-hot-loader/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/.babelrc -------------------------------------------------------------------------------- /examples/example-react-hot-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/package.json -------------------------------------------------------------------------------- /examples/example-react-hot-loader/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/public/index.html -------------------------------------------------------------------------------- /examples/example-react-hot-loader/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/rollup.config.js -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/src/App.js -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/Counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/src/Counter.css -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/src/Counter.js -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/Internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/src/Internal.js -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/Switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/src/Switch.css -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/src/Switch.js -------------------------------------------------------------------------------- /examples/example-react-hot-loader/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-hot-loader/src/main.js -------------------------------------------------------------------------------- /examples/example-react-refresh/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/.babelrc -------------------------------------------------------------------------------- /examples/example-react-refresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/package.json -------------------------------------------------------------------------------- /examples/example-react-refresh/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/public/index.html -------------------------------------------------------------------------------- /examples/example-react-refresh/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/rollup.config.js -------------------------------------------------------------------------------- /examples/example-react-refresh/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /examples/example-react-refresh/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/src/App.js -------------------------------------------------------------------------------- /examples/example-react-refresh/src/Counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/src/Counter.css -------------------------------------------------------------------------------- /examples/example-react-refresh/src/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/src/Counter.js -------------------------------------------------------------------------------- /examples/example-react-refresh/src/Internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/src/Internal.js -------------------------------------------------------------------------------- /examples/example-react-refresh/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-react-refresh/src/main.js -------------------------------------------------------------------------------- /examples/example-single-file-bundle/.gitignore: -------------------------------------------------------------------------------- 1 | public/build -------------------------------------------------------------------------------- /examples/example-single-file-bundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-single-file-bundle/package.json -------------------------------------------------------------------------------- /examples/example-single-file-bundle/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-single-file-bundle/public/index.html -------------------------------------------------------------------------------- /examples/example-single-file-bundle/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-single-file-bundle/rollup.config.js -------------------------------------------------------------------------------- /examples/example-single-file-bundle/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-single-file-bundle/src/main.js -------------------------------------------------------------------------------- /examples/example-single-file-bundle/src/message.js: -------------------------------------------------------------------------------- 1 | export default 'Hello World!'; -------------------------------------------------------------------------------- /examples/example-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-typescript/package.json -------------------------------------------------------------------------------- /examples/example-typescript/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-typescript/public/index.html -------------------------------------------------------------------------------- /examples/example-typescript/rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-typescript/rollup.config.ts -------------------------------------------------------------------------------- /examples/example-typescript/src/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-typescript/src/enum.ts -------------------------------------------------------------------------------- /examples/example-typescript/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-typescript/src/main.ts -------------------------------------------------------------------------------- /examples/example-virtual-index-html/.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /examples/example-virtual-index-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-virtual-index-html/package.json -------------------------------------------------------------------------------- /examples/example-virtual-index-html/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-virtual-index-html/rollup.config.js -------------------------------------------------------------------------------- /examples/example-virtual-index-html/src/main.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-size: 24px; 3 | } -------------------------------------------------------------------------------- /examples/example-virtual-index-html/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/examples/example-virtual-index-html/src/main.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/dev-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/dev-middleware.js -------------------------------------------------------------------------------- /lib/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/dev-server.js -------------------------------------------------------------------------------- /lib/impl/AcornParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/AcornParser.js -------------------------------------------------------------------------------- /lib/impl/ConfigLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/ConfigLoader.js -------------------------------------------------------------------------------- /lib/impl/NollupCodeGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/NollupCodeGenerator.js -------------------------------------------------------------------------------- /lib/impl/NollupCompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/NollupCompiler.js -------------------------------------------------------------------------------- /lib/impl/NollupContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/NollupContext.js -------------------------------------------------------------------------------- /lib/impl/NollupImportExportResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/NollupImportExportResolver.js -------------------------------------------------------------------------------- /lib/impl/NollupLiveBindingsResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/NollupLiveBindingsResolver.js -------------------------------------------------------------------------------- /lib/impl/ParseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/ParseError.js -------------------------------------------------------------------------------- /lib/impl/PluginContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/PluginContainer.js -------------------------------------------------------------------------------- /lib/impl/PluginContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/PluginContext.js -------------------------------------------------------------------------------- /lib/impl/PluginErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/PluginErrorHandler.js -------------------------------------------------------------------------------- /lib/impl/PluginLifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/PluginLifecycle.js -------------------------------------------------------------------------------- /lib/impl/PluginMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/PluginMeta.js -------------------------------------------------------------------------------- /lib/impl/PluginUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/PluginUtils.js -------------------------------------------------------------------------------- /lib/impl/RollupConfigContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/RollupConfigContainer.js -------------------------------------------------------------------------------- /lib/impl/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/types.js -------------------------------------------------------------------------------- /lib/impl/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/impl/utils.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/plugin-hmr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/plugin-hmr.js -------------------------------------------------------------------------------- /lib/sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/lib/sdk.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/package.json -------------------------------------------------------------------------------- /test/cases/DevMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/DevMiddleware.js -------------------------------------------------------------------------------- /test/cases/ErrorHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/ErrorHandling.js -------------------------------------------------------------------------------- /test/cases/Externals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/Externals.js -------------------------------------------------------------------------------- /test/cases/ImportExportResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/ImportExportResolver.js -------------------------------------------------------------------------------- /test/cases/PluginHMR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/PluginHMR.js -------------------------------------------------------------------------------- /test/cases/RequireUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/RequireUsage.js -------------------------------------------------------------------------------- /test/cases/Scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/Scenarios.js -------------------------------------------------------------------------------- /test/cases/StaticDynamicImportOptimisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/StaticDynamicImportOptimisation.js -------------------------------------------------------------------------------- /test/cases/VirtualModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/VirtualModules.js -------------------------------------------------------------------------------- /test/cases/api/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/api/context.js -------------------------------------------------------------------------------- /test/cases/api/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/api/generate.js -------------------------------------------------------------------------------- /test/cases/api/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/api/hooks.js -------------------------------------------------------------------------------- /test/cases/api/nollup_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/api/nollup_hooks.js -------------------------------------------------------------------------------- /test/cases/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/misc.js -------------------------------------------------------------------------------- /test/cases/options/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/context.js -------------------------------------------------------------------------------- /test/cases/options/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/input.js -------------------------------------------------------------------------------- /test/cases/options/moduleContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/moduleContext.js -------------------------------------------------------------------------------- /test/cases/options/output-assetFileNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/output-assetFileNames.js -------------------------------------------------------------------------------- /test/cases/options/output-chunkFileNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/output-chunkFileNames.js -------------------------------------------------------------------------------- /test/cases/options/output-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/output-dir.js -------------------------------------------------------------------------------- /test/cases/options/output-entryFileNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/output-entryFileNames.js -------------------------------------------------------------------------------- /test/cases/options/output-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/output-file.js -------------------------------------------------------------------------------- /test/cases/options/output-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/cases/options/output-format.js -------------------------------------------------------------------------------- /test/nollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/nollup.js -------------------------------------------------------------------------------- /test/packages/circular-deep/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-deep/A.js -------------------------------------------------------------------------------- /test/packages/circular-deep/B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-deep/B.js -------------------------------------------------------------------------------- /test/packages/circular-deep/C.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-deep/C.js -------------------------------------------------------------------------------- /test/packages/circular-deep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-deep/index.js -------------------------------------------------------------------------------- /test/packages/circular-deep/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-deep/message.js -------------------------------------------------------------------------------- /test/packages/circular-export-all-from/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-all-from/A.js -------------------------------------------------------------------------------- /test/packages/circular-export-all-from/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-all-from/index.js -------------------------------------------------------------------------------- /test/packages/circular-export-all-from/letters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-all-from/letters.js -------------------------------------------------------------------------------- /test/packages/circular-export-fn-as/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-fn-as/index.js -------------------------------------------------------------------------------- /test/packages/circular-export-fn-as/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-fn-as/other.js -------------------------------------------------------------------------------- /test/packages/circular-export-from-infinite-loop/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-from-infinite-loop/A.js -------------------------------------------------------------------------------- /test/packages/circular-export-from-infinite-loop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-from-infinite-loop/index.js -------------------------------------------------------------------------------- /test/packages/circular-export-from-infinite-loop/letters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-from-infinite-loop/letters.js -------------------------------------------------------------------------------- /test/packages/circular-export-from/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-from/A.js -------------------------------------------------------------------------------- /test/packages/circular-export-from/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-from/index.js -------------------------------------------------------------------------------- /test/packages/circular-export-from/letters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-export-from/letters.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-class/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-class/index.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-class/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-class/other.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-fn-require/dynamic.js: -------------------------------------------------------------------------------- 1 | export default 'dynamic'; -------------------------------------------------------------------------------- /test/packages/circular-hoist-fn-require/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-fn-require/index.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-fn-require/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-fn-require/other.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-var-patterns-extra/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-var-patterns-extra/index.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-var-patterns-extra/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-var-patterns-extra/other.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-var-patterns/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-var-patterns/index.js -------------------------------------------------------------------------------- /test/packages/circular-hoist-var-patterns/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-hoist-var-patterns/other.js -------------------------------------------------------------------------------- /test/packages/circular-shared-import-timing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-shared-import-timing/index.js -------------------------------------------------------------------------------- /test/packages/circular-shared-import-timing/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-shared-import-timing/shared.js -------------------------------------------------------------------------------- /test/packages/circular-shared-import-timing/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular-shared-import-timing/two.js -------------------------------------------------------------------------------- /test/packages/circular/A1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular/A1.js -------------------------------------------------------------------------------- /test/packages/circular/A2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular/A2.js -------------------------------------------------------------------------------- /test/packages/circular/A3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular/A3.js -------------------------------------------------------------------------------- /test/packages/circular/B.js: -------------------------------------------------------------------------------- 1 | export default function () { 2 | return 'B'; 3 | } -------------------------------------------------------------------------------- /test/packages/circular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/circular/index.js -------------------------------------------------------------------------------- /test/packages/empty-source-mapping/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "message": "hello" 3 | } -------------------------------------------------------------------------------- /test/packages/empty-source-mapping/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/empty-source-mapping/index.js -------------------------------------------------------------------------------- /test/packages/export-all/impl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-all/impl.js -------------------------------------------------------------------------------- /test/packages/export-all/index-proxy.js: -------------------------------------------------------------------------------- 1 | export * from './impl'; -------------------------------------------------------------------------------- /test/packages/export-all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-all/index.js -------------------------------------------------------------------------------- /test/packages/export-checks/alias-dep-from.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-checks/alias-dep-from.js -------------------------------------------------------------------------------- /test/packages/export-checks/dep-from.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-checks/dep-from.js -------------------------------------------------------------------------------- /test/packages/export-checks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-checks/index.js -------------------------------------------------------------------------------- /test/packages/export-declaration-late-binding/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-declaration-late-binding/index.js -------------------------------------------------------------------------------- /test/packages/export-declaration-late-binding/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-declaration-late-binding/messages.js -------------------------------------------------------------------------------- /test/packages/export-default-from/impl.js: -------------------------------------------------------------------------------- 1 | export default 123; -------------------------------------------------------------------------------- /test/packages/export-default-from/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './impl'; -------------------------------------------------------------------------------- /test/packages/export-full-live-bindings/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-full-live-bindings/counter.js -------------------------------------------------------------------------------- /test/packages/export-full-live-bindings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-full-live-bindings/index.js -------------------------------------------------------------------------------- /test/packages/export-import-delayed/impl.js: -------------------------------------------------------------------------------- 1 | export let message = 'hello'; -------------------------------------------------------------------------------- /test/packages/export-import-delayed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-import-delayed/index.js -------------------------------------------------------------------------------- /test/packages/export-same-export-as-from/hello.js: -------------------------------------------------------------------------------- 1 | export default 'hello'; -------------------------------------------------------------------------------- /test/packages/export-same-export-as-from/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-same-export-as-from/index.js -------------------------------------------------------------------------------- /test/packages/export-same-export-as-from/world.js: -------------------------------------------------------------------------------- 1 | export default 'world'; -------------------------------------------------------------------------------- /test/packages/export-synthetic-all-from/impl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/export-synthetic-all-from/impl.js -------------------------------------------------------------------------------- /test/packages/export-synthetic-all-from/index.js: -------------------------------------------------------------------------------- 1 | export * from './impl'; -------------------------------------------------------------------------------- /test/packages/hello-world/index.js: -------------------------------------------------------------------------------- 1 | export default 'hello world'; -------------------------------------------------------------------------------- /test/packages/multi-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/multi-module/index.js -------------------------------------------------------------------------------- /test/packages/multi-module/message/hello.js: -------------------------------------------------------------------------------- 1 | export default 'hello'; -------------------------------------------------------------------------------- /test/packages/multi-module/message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/multi-module/message/index.js -------------------------------------------------------------------------------- /test/packages/multi-module/message/world.js: -------------------------------------------------------------------------------- 1 | export default 'world' -------------------------------------------------------------------------------- /test/packages/multi-module/sum/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/packages/multi-module/sum/index.js -------------------------------------------------------------------------------- /test/packages/multi-module/sum/one.js: -------------------------------------------------------------------------------- 1 | export default 1; -------------------------------------------------------------------------------- /test/packages/multi-module/sum/three.js: -------------------------------------------------------------------------------- 1 | export default 3; -------------------------------------------------------------------------------- /test/packages/multi-module/sum/two.js: -------------------------------------------------------------------------------- 1 | export default 2; -------------------------------------------------------------------------------- /test/utils/evaluator-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/utils/evaluator-worker.js -------------------------------------------------------------------------------- /test/utils/evaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/utils/evaluator.js -------------------------------------------------------------------------------- /test/utils/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PepsRyuu/nollup/HEAD/test/utils/wait.js --------------------------------------------------------------------------------