diff options
author | Valentin Popov <info@valentineus.link> | 2017-09-28 19:47:06 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-09-28 19:47:06 +0300 |
commit | 1c0e2c906d8c0c503b2e74034275bb3321a216d8 (patch) | |
tree | 0702c92665cc45ddb09cbc23817688907f92dd04 /webpack.config.js | |
parent | 95f269594837ec1a137d5876e4517a844806a5bf (diff) | |
download | iii-client-1c0e2c906d8c0c503b2e74034275bb3321a216d8.tar.xz iii-client-1c0e2c906d8c0c503b2e74034275bb3321a216d8.zip |
Switch to the rollup assembly system
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index ec23cbd..0000000 --- a/webpack.config.js +++ /dev/null @@ -1,25 +0,0 @@ -'use strict'; -var webpack = require('webpack'); -var path = require('path'); - -module.exports = { - entry: path.resolve(__dirname, 'src/index.js'), - - output: { - filename: 'bundle.js', - path: path.resolve(__dirname, 'dist') - }, - - module: { - rules: [{ - test: /\.js$/, - exclude: /(node_modules|bower_components)/, - use: { - loader: 'babel-loader', - options: { - presets: ['es2015'] - } - } - }] - } -};
\ No newline at end of file |