@opencloning/store 1.0.0 → 1.0.2-test.0

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 (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +30 -27
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @opencloning/store
2
2
 
3
+ ## 1.0.2-test.0
4
+
5
+ ### Patch Changes
6
+
7
+ - testing a test release to npm
8
+ - e0fb5ee: Releases work on npm now through `YARN_NPM_AUTH_TOKEN=<> yarn changeset publish`, this is enabled by patch, see Readme. This properly handles workspaces (in package.json in each of the packages, `"@opencloning/store": "workspace:*",` is replaced by the actual version).
9
+
10
+ ## 1.0.1
11
+
12
+ ### Patch Changes
13
+
14
+ - a072fee: Dummy change to test releasing
15
+
3
16
  ## 1.0.0
4
17
 
5
18
  ### Major Changes
package/package.json CHANGED
@@ -1,28 +1,31 @@
1
1
  {
2
- "name": "@opencloning/store",
3
- "version": "1.0.0",
4
- "type": "module",
5
- "main": "./src/index.js",
6
- "exports": {
7
- ".": "./src/index.js",
8
- "./cloning": "./src/cloning.js",
9
- "./cloning_utils": "./src/cloning_utils.js"
10
- },
11
- "repository": {
12
- "type": "git",
13
- "url": "https://github.com/manulera/OpenCloning_frontend.git",
14
- "directory": "packages/store"
15
- },
16
- "dependencies": {
17
- "@reduxjs/toolkit": "^1.9.7",
18
- "@teselagen/bio-parsers": "^0.4.32",
19
- "@teselagen/range-utils": "^0.3.13",
20
- "redux": "^4.2.1",
21
- "redux-form": "^8.3.10",
22
- "redux-thunk": "^2.4.2"
23
- },
24
- "peerDependencies": {
25
- "react": "^18.3.1",
26
- "react-redux": "^8.1.3"
27
- }
28
- }
2
+ "name": "@opencloning/store",
3
+ "version": "1.0.2-test.0",
4
+ "type": "module",
5
+ "main": "./src/index.js",
6
+ "exports": {
7
+ ".": "./src/index.js",
8
+ "./cloning": "./src/cloning.js",
9
+ "./cloning_utils": "./src/cloning_utils.js"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/manulera/OpenCloning_frontend.git",
14
+ "directory": "packages/store"
15
+ },
16
+ "dependencies": {
17
+ "@reduxjs/toolkit": "^1.9.7",
18
+ "@teselagen/bio-parsers": "^0.4.32",
19
+ "@teselagen/range-utils": "^0.3.13",
20
+ "redux": "^4.2.1",
21
+ "redux-form": "^8.3.10",
22
+ "redux-thunk": "^2.4.2"
23
+ },
24
+ "peerDependencies": {
25
+ "react": "^18.3.1",
26
+ "react-redux": "^8.1.3"
27
+ },
28
+ "publishConfig": {
29
+ "registry": "https://registry.npmjs.org/"
30
+ }
31
+ }