aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-09-28 19:47:06 +0300
committerValentin Popov <info@valentineus.link>2017-09-28 19:47:06 +0300
commit1c0e2c906d8c0c503b2e74034275bb3321a216d8 (patch)
tree0702c92665cc45ddb09cbc23817688907f92dd04
parent95f269594837ec1a137d5876e4517a844806a5bf (diff)
downloadiii-client-1c0e2c906d8c0c503b2e74034275bb3321a216d8.tar.xz
iii-client-1c0e2c906d8c0c503b2e74034275bb3321a216d8.zip
Switch to the rollup assembly system
-rw-r--r--package.json13
-rw-r--r--rollup.config.js22
-rw-r--r--webpack.config.js25
3 files changed, 30 insertions, 30 deletions
diff --git a/package.json b/package.json
index c961ff8..dcb94a4 100644
--- a/package.json
+++ b/package.json
@@ -26,18 +26,21 @@
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
- "babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
+ "babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^3.19.0",
- "uglify-js": "^3.1.2",
- "webpack": "^3.6.0"
+ "rollup": "^0.50.0",
+ "rollup-plugin-babel": "^3.0.2",
+ "rollup-plugin-node-builtins": "^2.1.2",
+ "rollup-plugin-node-globals": "^1.1.0",
+ "uglify-js": "^3.1.2"
},
"scripts": {
"minify-standalone": "uglifyjs --mangle --compress --toplevel --source-map --output dist/standalone.min.js dist/standalone.js",
"minify-browser": "uglifyjs --mangle --compress --toplevel --source-map --output dist/bundle.min.js dist/bundle.js",
"minify": "npm run minify-browser && npm run minify-standalone",
- "build-standalone": "babel --out-file dist/standalone.js src/index.js",
- "build-browser": "webpack --config webpack.config.js",
+ "build-standalone": "babel src/index.js --out-file dist/standalone.js",
+ "build-browser": "rollup --config rollup.config.js",
"build": "npm run build-browser && npm run build-standalone",
"check": "eslint ./src/*"
}
diff --git a/rollup.config.js b/rollup.config.js
new file mode 100644
index 0000000..e8d61b6
--- /dev/null
+++ b/rollup.config.js
@@ -0,0 +1,22 @@
+import builtins from 'rollup-plugin-node-builtins';
+import globals from 'rollup-plugin-node-globals';
+import babel from 'rollup-plugin-babel';
+
+export default {
+ moduleName: 'client',
+ dest: 'dist/bundle.js',
+ entry: 'src/index.js',
+ format: 'iife',
+ plugins: [
+ builtins(),
+ globals(),
+ babel({
+ babelrc: false,
+ sourceMaps: false,
+ comments: false,
+ presets: [
+ ["es2015", { modules: false }]
+ ],
+ })
+ ]
+}; \ No newline at end of file
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