You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
692 B
32 lines
692 B
import resolve from 'rollup-plugin-node-resolve'; |
|
import babel from 'rollup-plugin-babel'; |
|
const packageJson = require('./package.json'); |
|
|
|
export default { |
|
entry : "dist/esnext/index.js", |
|
format : "umd", |
|
moduleName : "URI", |
|
plugins: [ |
|
resolve({ |
|
module: true, |
|
jsnext: true, |
|
preferBuiltins: false |
|
}), |
|
|
|
babel({ |
|
"presets": [ |
|
["latest", { |
|
"es2015": { |
|
"modules": false |
|
} |
|
}] |
|
], |
|
"plugins": ["external-helpers"], |
|
"externalHelpers": false |
|
} |
|
) |
|
], |
|
dest : "dist/es5/uri.all.js", |
|
sourceMap: true, |
|
banner: "/** @license URI.js v" + packageJson.version + " (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */" |
|
}
|
|
|