diff --git a/package.json b/package.json index b868bb3c262f6fb9902a2f0449cc1958d7d97c82..292c462dd2fe865c7fa376d6fea95c836f758eb8 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "eslint-config-mdcs": "^4.2.2", "google-closure-compiler": "20180101.0.0", "qunit": "^2.4.0", - "rollup": "^0.51.0", + "rollup": "^0.55.1", "rollup-watch": "^4.0.0", "serve": "6.4.9", "uglify-js": "^3.0.23" diff --git a/rollup.config.js b/rollup.config.js index e18101f05fdd1be69923cbbdf1cdacd93bff1fda..236aad9c11b728743e43cd9a971f5820420c76b0 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -25,7 +25,6 @@ function glsl() { export default { input: 'src/Three.js', - indent: '\t', plugins: [ glsl() ], @@ -34,11 +33,13 @@ export default { { format: 'umd', name: 'THREE', - file: 'build/three.js' + file: 'build/three.js', + indent: '\t' }, { format: 'es', - file: 'build/three.module.js' + file: 'build/three.module.js', + indent: '\t' } ] };