├── .gitignore ├── README.md ├── aws.example.json ├── package.json ├── src ├── index.template.html ├── main.js └── main.scss ├── webpack.config.js ├── webpack.debug.config.js ├── webpack.dist.config.js └── webpack.publish.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | aws.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/README.md -------------------------------------------------------------------------------- /aws.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/aws.example.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/package.json -------------------------------------------------------------------------------- /src/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/src/index.template.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | require('./main.scss') 2 | 3 | console.log("hello") 4 | -------------------------------------------------------------------------------- /src/main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background:red; 3 | } 4 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.debug.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/webpack.debug.config.js -------------------------------------------------------------------------------- /webpack.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/webpack.dist.config.js -------------------------------------------------------------------------------- /webpack.publish.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alastaircoote/webpack-template/HEAD/webpack.publish.config.js --------------------------------------------------------------------------------