@dr.pogodin/react-utils 1.36.0 → 1.36.2
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.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.36.
|
|
2
|
+
"version": "1.36.2",
|
|
3
3
|
"bin": {
|
|
4
4
|
"react-utils-build": "bin/build.js",
|
|
5
5
|
"react-utils-setup": "bin/setup.js"
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@dr.pogodin/babel-plugin-transform-assets": "^1.2.2",
|
|
60
60
|
"@dr.pogodin/babel-preset-svgr": "^1.8.0",
|
|
61
61
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
|
|
62
|
-
"@testing-library/dom": "^10.
|
|
62
|
+
"@testing-library/dom": "^10.2.0",
|
|
63
63
|
"@testing-library/react": "^16.0.0",
|
|
64
64
|
"@testing-library/user-event": "^14.5.2",
|
|
65
65
|
"@tsconfig/recommended": "^1.0.6",
|
|
@@ -153,6 +153,7 @@
|
|
|
153
153
|
"react-native": "./node-entry.js"
|
|
154
154
|
},
|
|
155
155
|
"./config/*": "./config/*.js",
|
|
156
|
+
"./config/*.json": "./config/*.json",
|
|
156
157
|
"./jest": "./build/production/shared/utils/jest/index.js",
|
|
157
158
|
"./mixins": "./src/styles/mixins.scss",
|
|
158
159
|
"./dev-styles": {
|
|
@@ -196,12 +197,10 @@
|
|
|
196
197
|
"build:prod": "node bin/build -t production --lib --webpack-config webpack.config.ts",
|
|
197
198
|
"build:types-code": "rimraf build/types-code && tsc --project tsconfig.types.json && tsc-alias -p tsconfig.types.json",
|
|
198
199
|
"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/
|
|
200
|
-
"jest:2": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=2/
|
|
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",
|
|
200
|
+
"jest:1": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=1/2",
|
|
201
|
+
"jest:2": "NODE_CONFIG_ENV=test jest --no-cache -w 1 --config config/jest/default.js --shard=2/2",
|
|
203
202
|
"jest:types": "tstyche",
|
|
204
|
-
"jest": "npm run jest:types && npm run jest:1 && npm run jest:2
|
|
203
|
+
"jest": "npm run jest:types && npm run jest:1 && npm run jest:2",
|
|
205
204
|
"lint": "npm run lint:code && npm run lint:scss",
|
|
206
205
|
"lint:code": "eslint --ext .js,.jsx,.ts,.tsx .",
|
|
207
206
|
"lint:scss": "stylelint -- **/*.{css,scss}",
|
package/tstyche.config.json
CHANGED