react-chain-of-responsibility 0.2.0-main.4fa3c3e → 0.2.0-main.a451930
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 +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-chain-of-responsibility",
|
|
3
|
-
"version": "0.2.0-main.
|
|
3
|
+
"version": "0.2.0-main.a451930",
|
|
4
4
|
"description": "Using chain of responsibility design pattern for React component customization.",
|
|
5
5
|
"files": [
|
|
6
6
|
"./dist/"
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"build": "tsup",
|
|
34
34
|
"bump": "npm run bump:prod && npm run bump:dev && npm run bump:auditfix",
|
|
35
35
|
"bump:auditfix": "npm audit fix || exit 0",
|
|
36
|
-
"bump:dev": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '
|
|
37
|
-
"bump:prod": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '
|
|
36
|
+
"bump:dev": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '.localPeerDependencies // {} as $L | .devDependencies // {} | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@latest\") | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
|
|
37
|
+
"bump:prod": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '.localPeerDependencies // {} as $L | .dependencies // {} | to_entries | map(select(.key as $K | $L | has($K) | not)) | map(.key + \"@latest\") | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
|
|
38
38
|
"precommit": "npm run precommit:eslint && npm run precommit:typescript:production && npm run precommit:typescript:test",
|
|
39
39
|
"precommit:eslint": "eslint ./src/",
|
|
40
40
|
"precommit:typescript:production": "tsc --noEmit --project ./src/tsconfig.precommit.production.json",
|
|
@@ -88,14 +88,14 @@
|
|
|
88
88
|
"@babel/preset-env": "^7.24.6",
|
|
89
89
|
"@babel/preset-react": "^7.24.6",
|
|
90
90
|
"@babel/preset-typescript": "^7.24.6",
|
|
91
|
-
"@fluentui/react": "^8.118.
|
|
91
|
+
"@fluentui/react": "^8.118.5",
|
|
92
92
|
"@testing-library/react": "^15.0.7",
|
|
93
93
|
"@tsconfig/recommended": "^1.0.6",
|
|
94
94
|
"@tsconfig/strictest": "^2.0.5",
|
|
95
95
|
"@types/jest": "^29.5.12",
|
|
96
|
-
"@types/node": "^20.12.
|
|
96
|
+
"@types/node": "^20.12.12",
|
|
97
97
|
"@types/react": "^18.3.3",
|
|
98
|
-
"esbuild": "^0.21.
|
|
98
|
+
"esbuild": "^0.21.3",
|
|
99
99
|
"escape-string-regexp": "^5.0.0",
|
|
100
100
|
"jest": "^29.7.0",
|
|
101
101
|
"jest-environment-jsdom": "^29.7.0",
|
|
@@ -112,6 +112,6 @@
|
|
|
112
112
|
},
|
|
113
113
|
"dependencies": {
|
|
114
114
|
"prop-types": "^15.8.1",
|
|
115
|
-
"react-chain-of-responsibility": "^0.2.0-main.
|
|
115
|
+
"react-chain-of-responsibility": "^0.2.0-main.a451930"
|
|
116
116
|
}
|
|
117
117
|
}
|