remove disableGlobbing stuff

This commit is contained in:
Rich Harris
2018-09-08 10:43:21 -04:00
parent 3b5eb2c16c
commit 16c2ed6b1a
5 changed files with 7 additions and 22 deletions

6
package-lock.json generated
View File

@@ -3217,9 +3217,9 @@
"dev": true "dev": true
}, },
"rollup": { "rollup": {
"version": "0.65.0", "version": "0.65.2",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-0.65.0.tgz", "resolved": "https://registry.npmjs.org/rollup/-/rollup-0.65.2.tgz",
"integrity": "sha512-en95i7zwW5IiWay6DR/6QV8TxO2LvWuCjHYDcgP96oVG/gPnWWzsxNViObhoJUs17bAj2RgB67WuBuGmysZZcw==", "integrity": "sha512-BbXOrpxVbx0MpElI6vVLR2B6vnWHvYU/QAMw3GcEXvs601bvgrozuaW30cnvt43B96a6DeoYA0i9T5THanN+Rw==",
"dev": true, "dev": true,
"requires": { "requires": {
"@types/estree": "0.0.39", "@types/estree": "0.0.39",

View File

@@ -25,7 +25,7 @@
"@babel/runtime": "^7.0.0", "@babel/runtime": "^7.0.0",
"chokidar": "^2.0.4", "chokidar": "^2.0.4",
"npm-run-all": "^4.1.2", "npm-run-all": "^4.1.2",
"rollup": "^0.65.0", "rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.2", "rollup-plugin-babel": "^4.0.2",
"rollup-plugin-commonjs": "^9.1.6", "rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-node-resolve": "^3.3.0",

View File

@@ -49,10 +49,5 @@ export default {
], ],
// temporary, pending Rollup 1.0 // temporary, pending Rollup 1.0
experimentalCodeSplitting: true, experimentalCodeSplitting: true
// temporary, pending https://github.com/rollup/rollup/pull/2432
watch: {
chokidar: { disableGlobbing: true }
}
}; };

View File

@@ -28,10 +28,5 @@ export default {
), ),
// temporary, pending Rollup 1.0 // temporary, pending Rollup 1.0
experimentalCodeSplitting: true, experimentalCodeSplitting: true
// temporary, pending https://github.com/rollup/rollup/pull/2432
watch: {
chokidar: { disableGlobbing: true }
}
}; };

View File

@@ -18,10 +18,5 @@ export default {
}), }),
commonjs(), commonjs(),
!dev && terser() !dev && terser()
], ]
// temporary, pending https://github.com/rollup/rollup/pull/2432
watch: {
chokidar: { disableGlobbing: true }
}
}; };