├── .gitignore ├── README.md ├── V8LazyParsedFunctionModulePlugin.js ├── V8LazyParsedFunctionModuleTemplatePlugin.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | *.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/LazyParseWebpackPlugin/HEAD/README.md -------------------------------------------------------------------------------- /V8LazyParsedFunctionModulePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/LazyParseWebpackPlugin/HEAD/V8LazyParsedFunctionModulePlugin.js -------------------------------------------------------------------------------- /V8LazyParsedFunctionModuleTemplatePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/LazyParseWebpackPlugin/HEAD/V8LazyParsedFunctionModuleTemplatePlugin.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/LazyParseWebpackPlugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLarkInn/LazyParseWebpackPlugin/HEAD/package.json --------------------------------------------------------------------------------