Browse Source

whoops, config file cant have ES6 in node 0.12

semi-dynamic-namespace-imports
Rich-Harris 9 years ago
parent
commit
bfe49e3d2d
  1. 4
      test/cli/config-external-function/rollup.config.js

4
test/cli/config-external-function/rollup.config.js

@ -7,7 +7,9 @@ export default {
entry: 'main.js',
format: 'cjs',
external: id => id === config,
external: function ( id ) {
return id === config;
},
plugins: [
{

Loading…
Cancel
Save