├── .gitignore ├── .prettierrc ├── Readme.md ├── package.json ├── resource ├── bundlePhase.md ├── commonChunking.md ├── esModuleInBrowser.md ├── moduleBundlerNeed.md └── moduleSystems.md ├── src ├── bundle │ ├── bar.js │ ├── entry.js │ ├── foo.js │ ├── math.js │ └── webpack.config.js ├── custom.cjs ├── index.js ├── loader.js ├── testMock.js └── testMockUtil.js ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/.prettierrc -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/Readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/package.json -------------------------------------------------------------------------------- /resource/bundlePhase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/resource/bundlePhase.md -------------------------------------------------------------------------------- /resource/commonChunking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/resource/commonChunking.md -------------------------------------------------------------------------------- /resource/esModuleInBrowser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/resource/esModuleInBrowser.md -------------------------------------------------------------------------------- /resource/moduleBundlerNeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/resource/moduleBundlerNeed.md -------------------------------------------------------------------------------- /resource/moduleSystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/resource/moduleSystems.md -------------------------------------------------------------------------------- /src/bundle/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/bundle/bar.js -------------------------------------------------------------------------------- /src/bundle/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/bundle/entry.js -------------------------------------------------------------------------------- /src/bundle/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/bundle/foo.js -------------------------------------------------------------------------------- /src/bundle/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/bundle/math.js -------------------------------------------------------------------------------- /src/bundle/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/bundle/webpack.config.js -------------------------------------------------------------------------------- /src/custom.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/custom.cjs -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/loader.js -------------------------------------------------------------------------------- /src/testMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/testMock.js -------------------------------------------------------------------------------- /src/testMockUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/src/testMockUtil.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Internals/Internals-of-a-Module-Bundler/HEAD/yarn.lock --------------------------------------------------------------------------------