@am92/react-design-system 2.10.5 → 2.10.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 +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@am92/react-design-system",
3
- "version": "2.10.5",
3
+ "version": "2.10.6",
4
4
  "description": "ReactJS Design System using Material UI",
5
5
  "sideEffects": false,
6
6
  "types": "dist/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "date-fns": "~2.30.0",
25
25
  "notistack": "~3.0.1",
26
26
  "prop-types": "~15.8.1",
27
- "swiper": "~11.0.6"
27
+ "swiper": "~12.1.3"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@babel/cli": "^7.21.0",
@@ -49,10 +49,11 @@
49
49
  "test": "echo 'Error: no test specified'",
50
50
  "preversion": "npm-run-all build test",
51
51
  "version": "echo 'Versioning'",
52
- "postversion": "if [ \"$BETA\" = \"true\" ]; then echo 'Skipping stable publish for beta'; else git push && git push --tags && npm run publish:pkg; fi",
53
- "release:beta": "BETA=true npm version prerelease --preid=beta && npm publish --tag beta && git push && git push --tags",
54
- "release:beta:dry": "BETA=true npm version prerelease --preid=beta --no-git-tag-version && npm publish --tag beta --dry-run",
55
- "publish:pkg": "npm publish"
52
+ "postversion": "git push && git push --tags",
53
+ "release:prerelease": "npm version prerelease --preid=beta && npm publish --tag beta",
54
+ "release:patch": "npm version patch && npm publish",
55
+ "release:minor": "npm version minor && npm publish",
56
+ "release:major": "npm version major && npm publish"
56
57
  },
57
58
  "repository": "git@github.com:heliumtank92/am92-react-design-system.git",
58
59
  "homepage": "https://github.com/heliumtank92/am92-react-design-system#readme",