@campxdev/campx-web-utils 1.2.5 → 1.2.6

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.
Files changed (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/campx-web-utils",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "author": "CampX",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "private": false,
22
22
  "peerDependencies": {
23
- "@campxdev/react-blueprint": "2.2.7",
23
+ "@campxdev/react-blueprint": ">=2.2.8",
24
24
  "@emotion/react": "^11.14.0",
25
25
  "@emotion/styled": "^11.14.0",
26
26
  "@mui/icons-material": "^7.0.2",
@@ -31,7 +31,7 @@
31
31
  "react-router-dom": "^6.24.0"
32
32
  },
33
33
  "dependencies": {
34
- "@campxdev/react-blueprint": "2.2.7",
34
+ "@campxdev/react-blueprint": "2.2.8",
35
35
  "@hookform/resolvers": "^2.9.10",
36
36
  "@mui/x-date-pickers": "^8.1.0",
37
37
  "axios": "^1.7.2",
@@ -93,6 +93,7 @@
93
93
  "scripts": {
94
94
  "start": "craco start",
95
95
  "test": "craco test",
96
+ "yalc:w": "copy package.json package.json.backup && node -e \"const fs=require('fs'); const pkg=JSON.parse(fs.readFileSync('./package.json')); pkg.main='export.ts'; pkg.module='export.ts'; pkg.types='export.ts'; pkg.exports={'.':'./export.ts'}; delete pkg.scripts.prepare; fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2));\" && yalc publish --push --sig --no-scripts && move /Y package.json.backup package.json",
96
97
  "eject": "react-scripts eject",
97
98
  "build": "rollup -c --bundleConfigAsCjs",
98
99
  "yalc:dev": "cp package.json package.json.backup && node -e \"const fs=require('fs'); const pkg=JSON.parse(fs.readFileSync('./package.json')); pkg.main='export.ts'; pkg.module='export.ts'; pkg.types='export.ts'; pkg.exports={'.':'./export.ts'}; delete pkg.scripts.prepare; fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2));\" && yalc publish --push --sig --no-scripts && mv package.json.backup package.json",