├── .babelrc ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── assets ├── javascript │ ├── logo.js │ ├── main.js │ └── second.js └── stylesheets │ ├── main.scss │ └── second.scss ├── config.rb ├── package.json ├── source ├── images │ └── .keep ├── index.html.erb ├── layouts │ └── .keep └── second.html.erb ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/README.md -------------------------------------------------------------------------------- /assets/javascript/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/assets/javascript/logo.js -------------------------------------------------------------------------------- /assets/javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/assets/javascript/main.js -------------------------------------------------------------------------------- /assets/javascript/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/assets/javascript/second.js -------------------------------------------------------------------------------- /assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/assets/stylesheets/main.scss -------------------------------------------------------------------------------- /assets/stylesheets/second.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/assets/stylesheets/second.scss -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/config.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/package.json -------------------------------------------------------------------------------- /source/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/source/index.html.erb -------------------------------------------------------------------------------- /source/layouts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/second.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/source/second.html.erb -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassdog/middleman-webpack/HEAD/yarn.lock --------------------------------------------------------------------------------