1
0
Fork 0

🔧 Switched to single rollup config file

This commit is contained in:
Joost De Cock 2018-07-26 22:14:42 +02:00
parent be4e759c1a
commit e792cf61ff
4 changed files with 975 additions and 998 deletions

View file

@ -1,25 +0,0 @@
import { terser } from "rollup-plugin-terser";
import babel from "rollup-plugin-babel";
import resolve from "rollup-plugin-node-resolve";
import commonjs from "rollup-plugin-commonjs";
import json from "rollup-plugin-json";
export default {
input: "src/index.js",
output: {
file: "dist/browser.js",
format: "iife",
name: "freesewing",
sourcemap: true
},
plugins: [
resolve({
browser: true
}),
json(),
commonjs(),
babel({
exclude: "node_modules/**"
})
]
};