├── .gitignore ├── .npmignore ├── History.md ├── Makefile ├── Readme.md ├── example └── react │ ├── base.css │ ├── bundle.js │ ├── client.css │ ├── client.html │ ├── client.js │ ├── external.js │ ├── fonts │ └── Roboto-Regular.ttf │ ├── images │ └── img.JPG │ └── index.js ├── index.js ├── package.json ├── test.js └── test ├── bundle.js └── fixtures ├── mount └── mount.js └── simple.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/Readme.md -------------------------------------------------------------------------------- /example/react/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: red; 3 | } 4 | -------------------------------------------------------------------------------- /example/react/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/bundle.js -------------------------------------------------------------------------------- /example/react/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/client.css -------------------------------------------------------------------------------- /example/react/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/client.html -------------------------------------------------------------------------------- /example/react/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/client.js -------------------------------------------------------------------------------- /example/react/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/external.js -------------------------------------------------------------------------------- /example/react/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /example/react/images/img.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/images/img.JPG -------------------------------------------------------------------------------- /example/react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/example/react/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/test.js -------------------------------------------------------------------------------- /test/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/bundle/HEAD/test/bundle.js -------------------------------------------------------------------------------- /test/fixtures/mount/mount.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/simple.js: -------------------------------------------------------------------------------- 1 | console.log('simple'); 2 | --------------------------------------------------------------------------------