├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── lib └── index.js ├── package.json └── test ├── fixtures ├── basic │ ├── expected │ │ ├── index.html │ │ └── js │ │ │ ├── a.js │ │ │ ├── bundle.js │ │ │ └── index.js │ ├── node_modules │ │ └── underscore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── underscore-min.js │ │ │ └── underscore.js │ ├── package.json │ └── src │ │ ├── index.html │ │ └── js │ │ ├── a.js │ │ └── index.js └── complex │ ├── expected │ ├── index.html │ └── js │ │ ├── a-bundle.js │ │ ├── a.js │ │ ├── b-bundle.js │ │ ├── b.js │ │ ├── index-a.js │ │ └── index-b.js │ ├── node_modules │ └── underscore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── underscore-min.js │ │ └── underscore.js │ ├── package.json │ └── src │ ├── index.html │ └── js │ ├── a.js │ ├── b.js │ ├── index-a.js │ └── index-b.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /test/fixtures/*/build/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/basic/expected/js/a.js: -------------------------------------------------------------------------------- 1 | module.exports = [1, 2, 3] 2 | -------------------------------------------------------------------------------- /test/fixtures/basic/expected/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/expected/js/bundle.js -------------------------------------------------------------------------------- /test/fixtures/basic/expected/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/expected/js/index.js -------------------------------------------------------------------------------- /test/fixtures/basic/node_modules/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/node_modules/underscore/LICENSE -------------------------------------------------------------------------------- /test/fixtures/basic/node_modules/underscore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/node_modules/underscore/README.md -------------------------------------------------------------------------------- /test/fixtures/basic/node_modules/underscore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/node_modules/underscore/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/node_modules/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/node_modules/underscore/underscore-min.js -------------------------------------------------------------------------------- /test/fixtures/basic/node_modules/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/node_modules/underscore/underscore.js -------------------------------------------------------------------------------- /test/fixtures/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/package.json -------------------------------------------------------------------------------- /test/fixtures/basic/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/src/index.html -------------------------------------------------------------------------------- /test/fixtures/basic/src/js/a.js: -------------------------------------------------------------------------------- 1 | module.exports = [1, 2, 3] 2 | -------------------------------------------------------------------------------- /test/fixtures/basic/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/basic/src/js/index.js -------------------------------------------------------------------------------- /test/fixtures/complex/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/expected/index.html -------------------------------------------------------------------------------- /test/fixtures/complex/expected/js/a-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/expected/js/a-bundle.js -------------------------------------------------------------------------------- /test/fixtures/complex/expected/js/a.js: -------------------------------------------------------------------------------- 1 | module.exports = [1, 2, 3] 2 | -------------------------------------------------------------------------------- /test/fixtures/complex/expected/js/b-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/expected/js/b-bundle.js -------------------------------------------------------------------------------- /test/fixtures/complex/expected/js/b.js: -------------------------------------------------------------------------------- 1 | module.exports = [4, 5, 6] 2 | -------------------------------------------------------------------------------- /test/fixtures/complex/expected/js/index-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/expected/js/index-a.js -------------------------------------------------------------------------------- /test/fixtures/complex/expected/js/index-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/expected/js/index-b.js -------------------------------------------------------------------------------- /test/fixtures/complex/node_modules/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/node_modules/underscore/LICENSE -------------------------------------------------------------------------------- /test/fixtures/complex/node_modules/underscore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/node_modules/underscore/README.md -------------------------------------------------------------------------------- /test/fixtures/complex/node_modules/underscore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/node_modules/underscore/package.json -------------------------------------------------------------------------------- /test/fixtures/complex/node_modules/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/node_modules/underscore/underscore-min.js -------------------------------------------------------------------------------- /test/fixtures/complex/node_modules/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/node_modules/underscore/underscore.js -------------------------------------------------------------------------------- /test/fixtures/complex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/package.json -------------------------------------------------------------------------------- /test/fixtures/complex/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/src/index.html -------------------------------------------------------------------------------- /test/fixtures/complex/src/js/a.js: -------------------------------------------------------------------------------- 1 | module.exports = [1, 2, 3] 2 | -------------------------------------------------------------------------------- /test/fixtures/complex/src/js/b.js: -------------------------------------------------------------------------------- 1 | module.exports = [4, 5, 6] 2 | -------------------------------------------------------------------------------- /test/fixtures/complex/src/js/index-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/src/js/index-a.js -------------------------------------------------------------------------------- /test/fixtures/complex/src/js/index-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/fixtures/complex/src/js/index-b.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercliff/metalsmith-webpack/HEAD/test/index.js --------------------------------------------------------------------------------