@opencloning/store 1.5.6 → 1.7.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,17 @@
1
1
  # @opencloning/store
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#670](https://github.com/manulera/OpenCloning_frontend/pull/670) [`2943c1c`](https://github.com/manulera/OpenCloning_frontend/commit/2943c1c3a8b29a7081841d8ca9e2b36a2ad14a61) Thanks [@manulera](https://github.com/manulera)! - Fix import structure
8
+
9
+ ## 1.6.0
10
+
11
+ ### Patch Changes
12
+
13
+ - [#668](https://github.com/manulera/OpenCloning_frontend/pull/668) [`dd0df39`](https://github.com/manulera/OpenCloning_frontend/commit/dd0df39c5fbf65feaab09f90d123e3776efed6bd) Thanks [@manulera](https://github.com/manulera)! - Added LICENSE to package.json
14
+
3
15
  ## 1.5.6
4
16
 
5
17
  ## 1.5.5
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
+ "license": "MIT",
2
3
  "name": "@opencloning/store",
3
- "version": "1.5.6",
4
+ "version": "1.7.0",
4
5
  "type": "module",
5
6
  "main": "./src/index.js",
6
7
  "exports": {
package/vitest.config.js CHANGED
@@ -6,10 +6,4 @@ export default defineConfig({
6
6
  test: {
7
7
  ...testConfig,
8
8
  },
9
- resolve: {
10
- alias: {
11
- '@opencloning/store': resolve(__dirname, './src'),
12
- '@opencloning/utils': resolve(__dirname, '../utils/src/utils'),
13
- },
14
- },
15
9
  });