Skip to content
This repository has been archived by the owner on Nov 15, 2017. It is now read-only.

Commit

Permalink
Generate lib as UMD module via buble
Browse files Browse the repository at this point in the history
  • Loading branch information
fastner committed May 13, 2016
1 parent 745eb2e commit eda4966
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import nodeResolve from "rollup-plugin-node-resolve"
import buble from "rollup-plugin-buble"

export default {
entry: "src/VuexValidator.js",
format: "umd",
moduleName: "VuexValidator",
plugins: [
nodeResolve({
jsnext: true
}),
buble()
],
dest: "lib/VuexValidator.js",
sourceMap: true
}

0 comments on commit eda4966

Please sign in to comment.