@opencloning/utils 1.0.1 → 1.1.0-dev.4

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,45 @@
1
1
  # @opencloning/utils
2
2
 
3
+ ## 1.1.0-dev.4
4
+
5
+ ### Patch Changes
6
+
7
+ - @opencloning/store@1.1.0-dev.4
8
+
9
+ ## 1.1.0-test.3
10
+
11
+ ### Patch Changes
12
+
13
+ - @opencloning/store@1.1.0-test.3
14
+
15
+ ## 1.1.0-test.2
16
+
17
+ ### Minor Changes
18
+
19
+ - d46f09d: Handle version display with scripts
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [d46f09d]
24
+ - @opencloning/store@1.1.0-test.2
25
+
26
+ ## 1.1.0-test.1
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies [02dbc55]
31
+ - @opencloning/store@1.1.0-test.1
32
+
33
+ ## 1.0.2-test.0
34
+
35
+ ### Patch Changes
36
+
37
+ - testing a test release to npm
38
+ - 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).
39
+ - Updated dependencies
40
+ - Updated dependencies [e0fb5ee]
41
+ - @opencloning/store@1.0.2-test.0
42
+
3
43
  ## 1.0.1
4
44
 
5
45
  ### 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-dev.4",
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-dev.4",
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';