@dr.pogodin/react-utils 1.43.14 → 1.43.15
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/bin/release.sh +1 -1
- package/config/eslint/default.mjs +20 -30
- package/package.json +7 -7
package/bin/release.sh
CHANGED
|
@@ -18,7 +18,7 @@ echo $GCLOUD_KEY > ${HOME}/gcloud-key.json
|
|
|
18
18
|
gcloud auth activate-service-account --key-file ${HOME}/gcloud-key.json
|
|
19
19
|
gcloud config set disable_prompts true
|
|
20
20
|
gcloud config set project dr-pogodin-studio-website
|
|
21
|
-
gsutil rsync -d -r docs/build gs://docs.pogodin.studio/react-utils
|
|
21
|
+
gsutil -m rsync -d -r docs/build gs://docs.pogodin.studio/react-utils
|
|
22
22
|
|
|
23
23
|
# Library package release.
|
|
24
24
|
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
|
|
@@ -3,34 +3,24 @@ import { defineConfig } from 'eslint/config';
|
|
|
3
3
|
|
|
4
4
|
import eslintConfigs from '@dr.pogodin/eslint-configs';
|
|
5
5
|
|
|
6
|
-
export default defineConfig([
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
eslintConfigs.configs.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
eslintConfigs.configs.javascript,
|
|
26
|
-
eslintConfigs.configs.typescript,
|
|
27
|
-
eslintConfigs.configs.react,
|
|
28
|
-
eslintConfigs.configs.jest,
|
|
29
|
-
],
|
|
30
|
-
files: ['__tests__/**'],
|
|
31
|
-
rules: {
|
|
32
|
-
'jest/expect-expect': ['warn', {
|
|
33
|
-
assertFunctionNames: ['expect', 'snapshot'],
|
|
34
|
-
}],
|
|
6
|
+
export default defineConfig([
|
|
7
|
+
{
|
|
8
|
+
ignores: [
|
|
9
|
+
'__coverage__',
|
|
10
|
+
'build/',
|
|
11
|
+
'docs/build/',
|
|
12
|
+
],
|
|
13
|
+
},
|
|
14
|
+
eslintConfigs.configs.javascript,
|
|
15
|
+
eslintConfigs.configs.typescript,
|
|
16
|
+
eslintConfigs.configs.react,
|
|
17
|
+
{
|
|
18
|
+
extends: [eslintConfigs.configs.jest],
|
|
19
|
+
files: ['__tests__/**'],
|
|
20
|
+
rules: {
|
|
21
|
+
'jest/expect-expect': ['warn', {
|
|
22
|
+
assertFunctionNames: ['expect', 'snapshot'],
|
|
23
|
+
}],
|
|
24
|
+
},
|
|
35
25
|
},
|
|
36
|
-
|
|
26
|
+
]);
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.43.
|
|
2
|
+
"version": "1.43.15",
|
|
3
3
|
"bin": {
|
|
4
4
|
"react-utils-build": "bin/build.js",
|
|
5
5
|
"react-utils-setup": "bin/setup.js"
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"url": "https://github.com/birdofpreyru/react-utils/issues"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@babel/runtime": "^7.27.
|
|
11
|
+
"@babel/runtime": "^7.27.3",
|
|
12
12
|
"@dr.pogodin/babel-plugin-react-css-modules": "^6.13.6",
|
|
13
13
|
"@dr.pogodin/csurf": "^1.16.4",
|
|
14
14
|
"@dr.pogodin/js-utils": "^0.0.18",
|
|
15
15
|
"@dr.pogodin/react-global-state": "^0.19.2",
|
|
16
16
|
"@dr.pogodin/react-helmet": "^3.0.2",
|
|
17
|
-
"@dr.pogodin/react-themes": "^1.9.
|
|
17
|
+
"@dr.pogodin/react-themes": "^1.9.1",
|
|
18
18
|
"@jest/environment": "^29.7.0",
|
|
19
19
|
"axios": "^1.9.0",
|
|
20
20
|
"commander": "^14.0.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"raf": "^3.4.1",
|
|
36
36
|
"react": "^19.1.0",
|
|
37
37
|
"react-dom": "^19.1.0",
|
|
38
|
-
"react-router": "^7.6.
|
|
38
|
+
"react-router": "^7.6.1",
|
|
39
39
|
"request-ip": "^3.3.0",
|
|
40
40
|
"rimraf": "^6.0.0",
|
|
41
41
|
"serialize-javascript": "^6.0.2",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"description": "Collection of generic ReactJS components and utils",
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@babel/cli": "^7.27.2",
|
|
50
|
-
"@babel/core": "^7.27.
|
|
50
|
+
"@babel/core": "^7.27.3",
|
|
51
51
|
"@babel/node": "^7.27.1",
|
|
52
|
-
"@babel/plugin-transform-runtime": "^7.27.
|
|
52
|
+
"@babel/plugin-transform-runtime": "^7.27.3",
|
|
53
53
|
"@babel/preset-env": "^7.27.2",
|
|
54
54
|
"@babel/preset-react": "^7.27.1",
|
|
55
55
|
"@babel/preset-typescript": "^7.27.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@types/morgan": "^1.9.9",
|
|
73
73
|
"@types/node-forge": "^1.3.11",
|
|
74
74
|
"@types/pretty": "^2.0.3",
|
|
75
|
-
"@types/react": "^19.1.
|
|
75
|
+
"@types/react": "^19.1.6",
|
|
76
76
|
"@types/react-dom": "^19.1.5",
|
|
77
77
|
"@types/request-ip": "^0.0.41",
|
|
78
78
|
"@types/serialize-javascript": "^5.0.4",
|