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 = [
resolve({
mainFields: [
// use "module" field for ES6 module if possible
module: true, // Default: true
"module", // Check for ES6 modules
// use "jsnext:main" if possible
// 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
// (needs to be converted from CommonJS to ES6
// see https://github.com/rollup/rollup-plugin-commonjs
main: true, // Default: true
"main" // ...otherwise use the main entry point
],
// some package.json files have a `browser` field which
// specifies alternative files to load for people bundling