Skip to content

Commit

Permalink
chore(build): Actually make all external dependencies external again
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed May 27, 2017
1 parent 5f886d5 commit fefaeca
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
const rollup = require('rollup')
const resolve = require('rollup-plugin-node-resolve')
const commonjs = require('rollup-plugin-commonjs')
const babel = require('rollup-plugin-babel')

rollup.rollup({
entry: 'src/index.js',
external: ['sinon'],
external: [
'sinon',
'fluent-arguments',
'ramda/src/compose',
'ramda/src/curry',
'ramda/src/filter',
'ramda/src/forEach'
],
plugins: [
resolve({jsnext: true, module: true}),
commonjs(),
babel({
presets: [
Expand Down

0 comments on commit fefaeca

Please sign in to comment.