@opencloning/utils 1.0.1 → 1.1.0-test.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/CHANGELOG.md +17 -0
- package/package.json +21 -2
- package/src/utils/index.js +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @opencloning/utils
|
|
2
2
|
|
|
3
|
+
## 1.1.0-test.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [02dbc55]
|
|
8
|
+
- @opencloning/store@1.1.0-test.1
|
|
9
|
+
|
|
10
|
+
## 1.0.2-test.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- testing a test release to npm
|
|
15
|
+
- 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).
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- Updated dependencies [e0fb5ee]
|
|
18
|
+
- @opencloning/store@1.0.2-test.0
|
|
19
|
+
|
|
3
20
|
## 1.0.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,14 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opencloning/utils",
|
|
3
|
-
"version": "1.0.1",
|
|
3
|
+
"version": "1.1.0-test.1",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"main": "./src/utils/index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./src/utils/index.js",
|
|
8
|
+
"./readNwrite": "./src/utils/readNwrite.js",
|
|
9
|
+
"./network": "./src/utils/network.js",
|
|
10
|
+
"./getHttpClient": "./src/utils/getHttpClient.js",
|
|
11
|
+
"./sourceFunctions": "./src/utils/sourceFunctions.js",
|
|
12
|
+
"./error2String": "./src/utils/error2String.js",
|
|
13
|
+
"./enzyme_utils": "./src/utils/enzyme_utils.js",
|
|
14
|
+
"./sequenceManipulation": "./src/utils/sequenceManipulation.js",
|
|
15
|
+
"./sequenceDisplay": "./src/utils/sequenceDisplay.js",
|
|
16
|
+
"./sequencingFileExtensions": "./src/utils/sequencingFileExtensions.js",
|
|
17
|
+
"./fileParsers": "./src/utils/fileParsers.js",
|
|
18
|
+
"./thunks": "./src/utils/thunks.js",
|
|
19
|
+
"./ncbiRequests": "./src/utils/ncbiRequests.js",
|
|
20
|
+
"./other": "./src/utils/other.js",
|
|
21
|
+
"./transformCoords": "./src/utils/transformCoords.js",
|
|
22
|
+
"./selectedRegionUtils": "./src/utils/selectedRegionUtils.js"
|
|
23
|
+
},
|
|
5
24
|
"repository": {
|
|
6
25
|
"type": "git",
|
|
7
26
|
"url": "https://github.com/manulera/OpenCloning_frontend.git",
|
|
8
27
|
"directory": "packages/utils"
|
|
9
28
|
},
|
|
10
29
|
"dependencies": {
|
|
11
|
-
"@opencloning/store": "1.0.1",
|
|
30
|
+
"@opencloning/store": "1.1.0-test.1",
|
|
12
31
|
"@teselagen/bio-parsers": "^0.4.32",
|
|
13
32
|
"@teselagen/sequence-utils": "^0.3.35",
|
|
14
33
|
"@zip.js/zip.js": "^2.7.62",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// Main entry point for @opencloning/utils
|
|
2
|
+
// Re-export commonly used utilities
|
|
3
|
+
|
|
4
|
+
export * from './readNwrite.js';
|
|
5
|
+
export * from './network.js';
|
|
6
|
+
export * from './getHttpClient.js';
|
|
7
|
+
export * from './sourceFunctions.js';
|
|
8
|
+
export { default as error2String } from './error2String.js';
|
|
9
|
+
export * from './enzyme_utils.js';
|
|
10
|
+
export * from './sequenceManipulation.js';
|
|
11
|
+
export * from './sequenceDisplay.js';
|
|
12
|
+
export * from './sequencingFileExtensions.js';
|
|
13
|
+
export * from './fileParsers.js';
|
|
14
|
+
export * from './thunks.js';
|
|
15
|
+
export * from './ncbiRequests.js';
|
|
16
|
+
export * from './other.js';
|
|
17
|
+
export { default as getTransformCoords } from './transformCoords.js';
|
|
18
|
+
export * from './selectedRegionUtils.js';
|