Skip to content

Commit

Permalink
Merge pull request #406 from KleeGroup/release-2.2.0-beta1
Browse files Browse the repository at this point in the history
Release 2.2.0 beta1
  • Loading branch information
c3dr0x authored Sep 11, 2017
2 parents 4cd5f9d + bb1e917 commit 2b6e8ad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
32 changes: 15 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "focus-core",
"version": "2.1.1",
"version": "2.2.0-beta1",
"description": "Focus library core part.",
"main": "index.js",
"babel": {
Expand All @@ -26,34 +26,33 @@
},
"scripts": {
"build": "better-npm-run babelify",
"babelify": "better-npm-run babelify",
"test": "better-npm-run test",
"test:watch": "better-npm-run test-watch",
"prepublish": "npm run build",
"prepare": "npm run build",
"lint": "eslint src --ext .js,.jsx --ignore-pattern __tests__ --ignore-pattern example --ignore-pattern awesomplete",
"lint:error": "eslint src --ext .js,.jsx --ignore-pattern __tests__ --ignore-pattern example --ignore-pattern awesomplete --quiet",
"fix-lint": "eslint src/** --ext .js,.jsx --fix --ignore-pattern __tests__ --ignore-pattern example --ignore-pattern awesomplete"
"fix-lint": "eslint src/** --ext .js,.jsx --fix --ignore-pattern __tests__ --ignore-pattern example --ignore-pattern awesomplete"
},
"betterScripts": {
"babelify": {
"env": {
"BABEL_ENV": "production"
"BABEL_ENV": "production",
"LEGACY_EXPORTS": "true"
},
"command": "node scripts/babelify.js"
},
"copy-sass": {
"command": "cd src && find . -name *.scss | xargs tar cvf - | tar xfp - -C ../"
},
"test": {
"command": "jest --config jest-config.js --runInBand --no-cache",
"env": {
"BABEL_ENV": "production"
"BABEL_ENV": "production",
"LEGACY_EXPORTS": "true"
}
},
"test-watch": {
"command": "jest --config jest-config.js --runInBand --watch ",
"env": {
"BABEL_ENV": "production"
"BABEL_ENV": "production",
"LEGACY_EXPORTS": "true"
}
}
},
Expand All @@ -63,21 +62,20 @@
},
"dependencies": {
"flux": "3.1.3",
"i18next": "8.4.3",
"i18next": "9.0.0",
"immutable": "3.8.1",
"lodash": "3.10.1",
"numeral": "2.0.6",
"object-assign": "4.1.1",
"uuid": "3.1.0"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-focus": "0.7.0",
"babel-jest": "21.0.2",
"babel-preset-focus": "1.0.0-beta1",
"better-npm-run": "0.1.0",
"eslint-config-focus": "git://github.com/KleeGroup/eslint-config-focus#master",
"focus-core": "2.1.1",
"jest-cli": "20.0.4",
"jsdom": "11.1.0",
"eslint-config-focus": "0.6.0",
"jest-cli": "21.0.2",
"jsdom": "11.2.0",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2"
Expand Down
1 change: 0 additions & 1 deletion src/network/error-parsing.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ function _treatBadRequestExceptions(responseJSON = {}, options) {
* @returns {any} depends on the errors handled
*/
function _handleStatusError(resErrors, opts) {
console.log('ici', resErrors, opts)
switch (resErrors.status) {
case 400:
case 401:
Expand Down

0 comments on commit 2b6e8ad

Please sign in to comment.