@opencloning/ui 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @opencloning/ui
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
+ - Updated dependencies
10
+ - Updated dependencies [e0fb5ee]
11
+ - @opencloning/store@1.0.2-test.0
12
+ - @opencloning/utils@1.0.2-test.0
13
+
14
+ ## 1.0.1
15
+
16
+ ### Patch Changes
17
+
18
+ - a072fee: Dummy change to test releasing
19
+ - Updated dependencies [a072fee]
20
+ - @opencloning/store@1.0.1
21
+ - @opencloning/utils@1.0.1
22
+
3
23
  ## 1.0.0
4
24
 
5
25
  ### Major Changes
package/package.json CHANGED
@@ -1,37 +1,41 @@
1
1
  {
2
- "name": "@opencloning/ui",
3
- "version": "1.0.0",
4
- "type": "module",
5
- "main": "./src/index.js",
6
- "exports": {
7
- ".": "./src/index.js"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/manulera/OpenCloning_frontend.git",
12
- "directory": "packages/ui"
13
- },
14
- "dependencies": {
15
- "@emotion/react": "^11.14.0",
16
- "@emotion/styled": "^11.14.0",
17
- "@mui/icons-material": "^5.15.17",
18
- "@mui/material": "^5.15.17",
19
- "@opencloning/store": "workspace:*",
20
- "@opencloning/utils": "workspace:*",
21
- "@teselagen/bio-parsers": "^0.4.32",
22
- "@teselagen/ove": "^0.8.18",
23
- "@teselagen/range-utils": "^0.3.13",
24
- "@teselagen/sequence-utils": "^0.3.35",
25
- "@zip.js/zip.js": "^2.7.62",
26
- "axios": "^1.12.2",
27
- "lodash-es": "^4.17.21",
28
- "react": "^18.3.1",
29
- "react-draggable": "^4.4.6",
30
- "react-redux": "^8.1.3"
31
- },
32
- "peerDependencies": {
33
- "react": "^18.3.1",
34
- "react-dom": "^18.3.1",
35
- "react-redux": "^8.1.3"
36
- }
37
- }
2
+ "name": "@opencloning/ui",
3
+ "version": "1.0.2-test.0",
4
+ "type": "module",
5
+ "main": "./src/index.js",
6
+ "exports": {
7
+ ".": "./src/index.js",
8
+ "./components": "./src/components/index.js"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/manulera/OpenCloning_frontend.git",
13
+ "directory": "packages/ui"
14
+ },
15
+ "dependencies": {
16
+ "@emotion/react": "^11.14.0",
17
+ "@emotion/styled": "^11.14.0",
18
+ "@mui/icons-material": "^5.15.17",
19
+ "@mui/material": "^5.15.17",
20
+ "@opencloning/store": "1.0.2-test.0",
21
+ "@opencloning/utils": "1.0.2-test.0",
22
+ "@teselagen/bio-parsers": "^0.4.32",
23
+ "@teselagen/ove": "^0.8.18",
24
+ "@teselagen/range-utils": "^0.3.13",
25
+ "@teselagen/sequence-utils": "^0.3.35",
26
+ "@zip.js/zip.js": "^2.7.62",
27
+ "axios": "^1.12.2",
28
+ "lodash-es": "^4.17.21",
29
+ "react": "^18.3.1",
30
+ "react-draggable": "^4.4.6",
31
+ "react-redux": "^8.1.3"
32
+ },
33
+ "peerDependencies": {
34
+ "react": "^18.3.1",
35
+ "react-dom": "^18.3.1",
36
+ "react-redux": "^8.1.3"
37
+ },
38
+ "publishConfig": {
39
+ "registry": "https://registry.npmjs.org/"
40
+ }
41
+ }
File without changes
File without changes
@@ -0,0 +1 @@
1
+ export { default as OpenCloning } from './OpenCloning';