Skip to content

Commit

Permalink
Upgrade deps and stop indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
timdorr committed Apr 17, 2018
1 parent 6484181 commit 20de02b
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 130 deletions.
150 changes: 28 additions & 122 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
Expand All @@ -72,20 +72,20 @@
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-flowtype": "^2.46.2",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"glob": "^7.1.1",
"jest": "^22.4.3",
"prettier": "^1.11.1",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup": "^0.58.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rxjs": "^5.5.8",
"rxjs": "^5.5.10",
"typescript": "^2.8.1",
"typings-tester": "^0.3.1"
},
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config = {
}

if (env === 'es' || env === 'cjs') {
config.output = { format: env }
config.output = { format: env, indent: false }
config.external = ['symbol-observable']
config.plugins.push(
babel({
Expand All @@ -20,7 +20,7 @@ if (env === 'es' || env === 'cjs') {
}

if (env === 'development' || env === 'production') {
config.output = { format: 'umd', name: 'Redux' }
config.output = { format: 'umd', name: 'Redux', indent: false }
config.plugins.push(
nodeResolve({
jsnext: true
Expand Down

0 comments on commit 20de02b

Please sign in to comment.