From 34db799005acecd851669546dc4dc001691e2f94 Mon Sep 17 00:00:00 2001 From: Timur Khazamov Date: Thu, 29 Mar 2018 16:04:17 +0500 Subject: [PATCH] 0.17.0 --- package.json | 37 +++++++++++++++++++++++++++---------- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 61456e224db..aff1aa718b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "retail-ui", - "version": "0.16.5", + "version": "0.17.0", "description": "UI Components", "main": "dist/index.js", "repository": { @@ -8,9 +8,19 @@ "url": "git@github.com:skbkontur/retail-ui.git" }, "lint-staged": { - "*.js": ["prettier --single-quote --write", "eslint", "git add"], - "*.{css,less}": ["prettier --write", "git add"], - "*.{ts,tsx}": ["prettier --single-quote --write", "git add"] + "*.js": [ + "prettier --single-quote --write", + "eslint", + "git add" + ], + "*.{css,less}": [ + "prettier --write", + "git add" + ], + "*.{ts,tsx}": [ + "prettier --single-quote --write", + "git add" + ] }, "bugs": { "url": "https://github.com/skbkontur/retail-ui/issues" @@ -20,8 +30,7 @@ "build-storybook": "build-storybook", "deploy": "gh-pages -d styleguide -r git@github.com:skbkontur/react-ui.git", "gemini:update": "gemini update", - "gemini": - "wait-on http-get://localhost:6060/ && gemini test --reporter vflat", + "gemini": "wait-on http-get://localhost:6060/ && gemini test --reporter vflat", "lint": "eslint . --ignore-pattern 'flow-typed/**/*.js'", "precommit": "flow && lint-staged", "predeploy": "npm run styleguide:build", @@ -135,8 +144,7 @@ }, "jest": { "moduleNameMapper": { - "\\.(jpg|jpeg|png|gif|eot|otf||svg|ttf|woff|woff2)$": - "/testing/__mocks__/fileMock.js", + "\\.(jpg|jpeg|png|gif|eot|otf||svg|ttf|woff|woff2)$": "/testing/__mocks__/fileMock.js", "\\.(css|less)$": "identity-obj-proxy" }, "transform": { @@ -144,7 +152,16 @@ "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*(test|spec))\\.(jsx?|tsx?)$", - "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"], - "setupFiles": ["/test-setup.js"] + "moduleFileExtensions": [ + "ts", + "tsx", + "js", + "jsx", + "json", + "node" + ], + "setupFiles": [ + "/test-setup.js" + ] } }