Skip to content

Commit

Permalink
Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vasturiano committed Oct 30, 2020
1 parent 8185a0f commit 8134c23
Show file tree
Hide file tree
Showing 3 changed files with 521 additions and 617 deletions.
22 changes: 10 additions & 12 deletions package.json
Expand Up @@ -40,24 +40,22 @@
"accessor-fn": "^1.3.0",
"kapsule": "^1.13.3",
"three": "^0.119.1",
"three-forcegraph": "^1.36.1",
"three-render-objects": "^1.24.5"
"three-forcegraph": "^1.37.0",
"three-render-objects": "^1.24.6"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"postcss-nested": "^4.2.3",
"postcss-simple-vars": "^5.0.2",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup": "^2.32.1",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.3"
"typescript": "^4.0.5"
}
}
16 changes: 2 additions & 14 deletions rollup.config.js
Expand Up @@ -2,8 +2,6 @@ import resolve from '@rollup/plugin-node-resolve';
import commonJs from '@rollup/plugin-commonjs';
import babel from '@rollup/plugin-babel';
import postCss from 'rollup-plugin-postcss';
import postCssSimpleVars from 'postcss-simple-vars';
import postCssNested from 'postcss-nested';
import { terser } from "rollup-plugin-terser";
import dts from 'rollup-plugin-dts';
import { name, homepage, version, dependencies } from './package.json';
Expand Down Expand Up @@ -32,12 +30,7 @@ export default [
}
],
plugins: [
postCss({
plugins: [
postCssSimpleVars(),
postCssNested()
]
}),
postCss({ plugins: [] }),
babel({ exclude: 'node_modules/**' }),
resolve(),
commonJs()
Expand All @@ -60,12 +53,7 @@ export default [
'three/examples/jsm/controls/DragControls.js'
],
plugins: [
postCss({
plugins: [
postCssSimpleVars(),
postCssNested()
]
}),
postCss({ plugins: [] }),
babel()
]
},
Expand Down

0 comments on commit 8134c23

Please sign in to comment.