@dr.pogodin/react-utils 1.36.0 → 1.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "extends": "../../node_modules/@tsconfig/recommended/tsconfig.json",
3
+ "extends": "@tsconfig/recommended/tsconfig.json",
4
4
  "compilerOptions": {
5
5
  "jsx": "react-jsx",
6
6
  "noUncheckedIndexedAccess": true,
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.36.0",
2
+ "version": "1.36.1",
3
3
  "bin": {
4
4
  "react-utils-build": "bin/build.js",
5
5
  "react-utils-setup": "bin/setup.js"
@@ -196,12 +196,10 @@
196
196
  "build:prod": "node bin/build -t production --lib --webpack-config webpack.config.ts",
197
197
  "build:types-code": "rimraf build/types-code && tsc --project tsconfig.types.json && tsc-alias -p tsconfig.types.json",
198
198
  "build:types-scss": "rimraf build/types-scss && typed-scss-modules .",
199
- "jest:1": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=1/4",
200
- "jest:2": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=2/4",
201
- "jest:3": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=3/4",
202
- "jest:4": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=4/4",
199
+ "jest:1": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=1/2",
200
+ "jest:2": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=2/2",
203
201
  "jest:types": "tstyche",
204
- "jest": "npm run jest:types && npm run jest:1 && npm run jest:2 && npm run jest:3 && npm run jest:4",
202
+ "jest": "npm run jest:types && npm run jest:1 && npm run jest:2",
205
203
  "lint": "npm run lint:code && npm run lint:scss",
206
204
  "lint:code": "eslint --ext .js,.jsx,.ts,.tsx .",
207
205
  "lint:scss": "stylelint -- **/*.{css,scss}",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "testFileMatch": [
3
- "__tests__/ts/**/*.ts",
4
- "__tests__/ts/**/*.tsx"
3
+ "__tests__/**/*.ts",
4
+ "__tests__/**/*.tsx"
5
5
  ]
6
6
  }