Skip to content

Commit

Permalink
fix(Dependency): Update ParaViewWeb along with the build system
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Aug 9, 2016
1 parent c6eef6f commit ca9d38f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
32 changes: 16 additions & 16 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
module.exports = {
extends: 'airbnb',
rules: {
'array-bracket-spacing': 0,
'guard-for-in': 0,
'max-len': [1, 160, 4, {"ignoreUrls": true}],
'no-console': 0,
'no-multi-spaces': 0,
'no-nested-ternary': 0,
'no-param-reassign': 0,
'no-throw-literal': 0,
'no-unused-vars': [2, { args: 'none' }],
'import/no-extraneous-dependencies': ["error", { "devDependencies": true }],
'max-len': ["warn", 160, 4, {"ignoreUrls": true}],
'no-multi-spaces': ["error", { exceptions: { "ImportDeclaration": true } }],
'no-param-reassign': ["error", { props: false }],
'no-unused-vars': ["error", { args: 'none' }],
'react/jsx-filename-extension': ["error", { "extensions": [".js"] }],
'no-mixed-operators': ["error", {"allowSamePrecedence": true}],

// Should fix that at some point but too much work...
'react/no-is-mounted': "warn",
'no-var': 0,
'react/jsx-closing-bracket-location': 1,
'react/jsx-indent-props': 1,
'react/jsx-space-before-closing': 1,
'react/no-is-mounted': 1,
'react/prefer-es6-class': 0,
'react/sort-comp': 0,
'spaced-comment': 1,
'one-var': 0,
'react/prefer-es6-class': 0,
'no-nested-ternary': 0,

// Not for us ;-)
'jsx-a11y/label-has-for': 0,
'no-console': 0,
},
settings: {
'import/resolver': 'webpack',
Expand Down
19 changes: 9 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,26 @@
"dependencies": {
"commander": "2.9.0",
"open": "0.0.5",
"shelljs": "0.6.0"
"shelljs": "0.7.3"
},
"devDependencies": {
"ws": "0.8.1",
"axios": "0.9.0",
"font-awesome": "4.5.0",
"gl-matrix": "2.3.1",
"font-awesome": "4.6.3",
"gl-matrix": "2.3.2",
"hammerjs": "2.0.8",

"monologue.js": "0.3.5",
"mout": "1.0.0",
"normalize.css": "4.1.1",
"paraviewweb": "1.15.2",
"react": "15.2.1",
"react-dom": "15.2.1",
"normalize.css": "4.2.0",
"paraviewweb": "2.0.3",
"react": "15.3.0",
"react-dom": "15.3.0",
"react-redux": "4.4.5",
"redux": "3.5.2",
"reselect": "2.5.3",

"kw-web-suite": "2.0.1",
"kw-doc": "1.0.12"
"kw-web-suite": "2.1.0",
"kw-doc": "1.0.13"
},
"scripts": {
"build": "fix-autobahn && webpack",
Expand Down

0 comments on commit ca9d38f

Please sign in to comment.