Skip to content

Commit

Permalink
fix(dependencies): don't depend on closure compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
basvanmeurs committed Mar 4, 2019
1 parent 0da8a28 commit 4a442f0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 31 deletions.
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -7,8 +7,7 @@
"postinstall": "rollup -c"
},
"dependencies": {
"rollup": "^0.67.0",
"rollup-plugin-closure-compiler": "^0.1.0"
"rollup": "^0.67.0"
},
"repository": {
"type": "git",
Expand Down
13 changes: 10 additions & 3 deletions rollup.config.js
@@ -1,4 +1,11 @@
import web from './rollup.web.config.js'
import webMin from './rollup.web.min.config.js'
const resolve = require('./rollup.plugin.resolver');

export default [web, webMin]
export default {
input: './src/lightning.mjs',
plugins: [resolve("web")],
output: {
file: './dist/lightning-web.js',
format: 'iife',
name: 'lng'
}
};
11 changes: 0 additions & 11 deletions rollup.web.config.js

This file was deleted.

15 changes: 0 additions & 15 deletions rollup.web.min.config.js

This file was deleted.

0 comments on commit 4a442f0

Please sign in to comment.