redux-astroglide 0.1.26 → 1.0.1

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/README.md CHANGED
@@ -357,6 +357,10 @@ addPlugins({
357
357
 
358
358
  Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
359
359
 
360
+ Releases are automated via semantic-release on push to `main`. See
361
+ [RELEASE.md](RELEASE.md) for the full publish process, including how commit messages
362
+ map to version bumps.
363
+
360
364
   
361
365
 
362
366
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redux-astroglide",
3
- "version": "0.1.26",
3
+ "version": "1.0.1",
4
4
  "description": "Taking the pain out of redux state management",
5
5
  "keywords": [
6
6
  "redux",
@@ -56,7 +56,9 @@
56
56
  "browser": "./dist/index.umd.js",
57
57
  "types": "./dist/types/index.d.ts",
58
58
  "files": [
59
- "dist"
59
+ "dist",
60
+ "plugins",
61
+ "selectors"
60
62
  ],
61
63
  "scripts": {
62
64
  "start": "BUILD_ENV=dev npm run build:js -- --watch",
@@ -76,12 +78,10 @@
76
78
  },
77
79
  "lint-staged": {
78
80
  "*.{js,jsx,ts,tsx}": [
79
- "prettier --write",
80
- "git add"
81
+ "prettier --write"
81
82
  ],
82
83
  "*.{json,md,yml}": [
83
- "prettier --write",
84
- "git add"
84
+ "prettier --write"
85
85
  ]
86
86
  },
87
87
  "dependencies": {
@@ -93,18 +93,19 @@
93
93
  "@babel/core": "^7.18.2",
94
94
  "@babel/preset-env": "^7.18.2",
95
95
  "@babel/preset-typescript": "^7.17.12",
96
+ "@commitlint/cli": "^21.0.0",
96
97
  "@commitlint/config-conventional": "17.0.3",
97
98
  "@reduxjs/toolkit": "^1.9.2",
98
99
  "@rollup/plugin-babel": "5.3.1",
99
100
  "@rollup/plugin-commonjs": "^22.0.0",
100
101
  "@rollup/plugin-json": "^4.1.0",
101
102
  "@rollup/plugin-node-resolve": "^13.3.0",
102
- "@semantic-release/changelog": "6.0.1",
103
- "@semantic-release/commit-analyzer": "9.0.2",
104
- "@semantic-release/git": "10.0.1",
105
- "@semantic-release/github": "8.0.4",
106
- "@semantic-release/npm": "9.0.1",
107
- "@semantic-release/release-notes-generator": "10.0.3",
103
+ "@semantic-release/changelog": "^6.0.3",
104
+ "@semantic-release/commit-analyzer": "^13.0.0",
105
+ "@semantic-release/git": "^10.0.1",
106
+ "@semantic-release/github": "^12.0.0",
107
+ "@semantic-release/npm": "^13.0.0",
108
+ "@semantic-release/release-notes-generator": "^14.0.0",
108
109
  "@testing-library/jest-dom": "^6.9.1",
109
110
  "@testing-library/react": "^16.3.1",
110
111
  "@testing-library/user-event": "^14.6.1",
@@ -128,7 +129,7 @@
128
129
  "rimraf": "^3.0.2",
129
130
  "rollup": "^2.74.1",
130
131
  "rollup-plugin-terser": "^7.0.2",
131
- "semantic-release": "19.0.3",
132
+ "semantic-release": "^25.0.0",
132
133
  "ts-jest": "^29.4.6",
133
134
  "typescript": "^4.7.2"
134
135
  },
@@ -142,5 +143,6 @@
142
143
  },
143
144
  "publishConfig": {
144
145
  "access": "public"
145
- }
146
+ },
147
+ "packageManager": "pnpm@10.25.0"
146
148
  }
@@ -0,0 +1,6 @@
1
+ {
2
+ "private": true,
3
+ "main": "../dist/plugins/index.js",
4
+ "module": "../dist/plugins/index.mjs",
5
+ "types": "../dist/types/plugins/index.d.ts"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "private": true,
3
+ "main": "../../dist/plugins/persist/index.js",
4
+ "module": "../../dist/plugins/persist/index.mjs",
5
+ "types": "../../dist/types/plugins/persist/index.d.ts"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "private": true,
3
+ "main": "../../dist/plugins/set/index.js",
4
+ "module": "../../dist/plugins/set/index.mjs",
5
+ "types": "../../dist/types/plugins/set/index.d.ts"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "private": true,
3
+ "main": "../../dist/plugins/type/index.js",
4
+ "module": "../../dist/plugins/type/index.mjs",
5
+ "types": "../../dist/types/plugins/type/index.d.ts"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "private": true,
3
+ "main": "../dist/selectors/index.js",
4
+ "module": "../dist/selectors/index.mjs",
5
+ "types": "../dist/types/selectors/index.d.ts"
6
+ }
package/CHANGELOG.md DELETED
@@ -1,4 +0,0 @@
1
-
2
- ### Bug Fixes
3
-
4
- ### Features