Fix rollup warnings

This commit is contained in:
Starbeamrainbowlabs 2019-07-19 00:11:29 +01:00
parent 39309eae9f
commit 18c4220920
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 11 additions and 11 deletions

View File

@ -14,17 +14,17 @@ import postcss_copy from 'postcss-copy';
let plugins = [ let plugins = [
resolve({ resolve({
// use "module" field for ES6 module if possible mainFields: [
module: true, // Default: true // use "module" field for ES6 module if possible
"module", // Check for ES6 modules
// use "jsnext:main" if possible // use "jsnext:main" if possible
// see https://github.com/rollup/rollup/wiki/jsnext:main // see https://github.com/rollup/rollup/wiki/jsnext:main
jsnext: true, // Default: false "jsnext:main",
// use "main" field or index.js, even if it's not an ES6 module
// use "main" field or index.js, even if it's not an ES6 module // (needs to be converted from CommonJS to ES6
// (needs to be converted from CommonJS to ES6 // see https://github.com/rollup/rollup-plugin-commonjs
// see https://github.com/rollup/rollup-plugin-commonjs "main" // ...otherwise use the main entry point
main: true, // Default: true ],
// some package.json files have a `browser` field which // some package.json files have a `browser` field which
// specifies alternative files to load for people bundling // specifies alternative files to load for people bundling