@unchainedshop/core 2.0.0-rc.2 → 2.0.0-rc.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.
@@ -1,2 +1,2 @@
1
- import { UnchainedCore, UnchainedCoreOptions } from '@unchainedshop/types/core';
1
+ import { UnchainedCore, UnchainedCoreOptions } from '@unchainedshop/types/core.js';
2
2
  export declare const initCore: ({ db, migrationRepository, modules, services, bulkImporter, options, }: UnchainedCoreOptions) => Promise<UnchainedCore>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unchainedshop/core",
3
- "version": "2.0.0-rc.2",
3
+ "version": "2.0.0-rc.4",
4
4
  "main": "lib/core-index.js",
5
5
  "exports": {
6
6
  ".": "./lib/core-index.js",
@@ -31,30 +31,30 @@
31
31
  },
32
32
  "homepage": "https://github.com/unchainedshop/unchained#readme",
33
33
  "dependencies": {
34
- "@unchainedshop/core-accountsjs": "^2.0.0-rc.2",
35
- "@unchainedshop/core-assortments": "^2.0.0-rc.2",
36
- "@unchainedshop/core-bookmarks": "^2.0.0-rc.2",
37
- "@unchainedshop/core-countries": "^2.0.0-rc.2",
38
- "@unchainedshop/core-currencies": "^2.0.0-rc.2",
39
- "@unchainedshop/core-delivery": "^2.0.0-rc.2",
40
- "@unchainedshop/core-enrollments": "^2.0.0-rc.2",
41
- "@unchainedshop/core-events": "^2.0.0-rc.2",
42
- "@unchainedshop/core-files": "^2.0.0-rc.2",
43
- "@unchainedshop/core-filters": "^2.0.0-rc.2",
44
- "@unchainedshop/core-languages": "^2.0.0-rc.2",
45
- "@unchainedshop/core-messaging": "^2.0.0-rc.2",
46
- "@unchainedshop/core-orders": "^2.0.0-rc.2",
47
- "@unchainedshop/core-payment": "^2.0.0-rc.2",
48
- "@unchainedshop/core-products": "^2.0.0-rc.2",
49
- "@unchainedshop/core-quotations": "^2.0.0-rc.2",
50
- "@unchainedshop/core-users": "^2.0.0-rc.2",
51
- "@unchainedshop/core-warehousing": "^2.0.0-rc.2",
52
- "@unchainedshop/core-worker": "^2.0.0-rc.2",
53
- "@unchainedshop/logger": "^2.0.0-rc.2"
34
+ "@unchainedshop/core-accountsjs": "^2.0.0-rc.4",
35
+ "@unchainedshop/core-assortments": "^2.0.0-rc.4",
36
+ "@unchainedshop/core-bookmarks": "^2.0.0-rc.4",
37
+ "@unchainedshop/core-countries": "^2.0.0-rc.4",
38
+ "@unchainedshop/core-currencies": "^2.0.0-rc.4",
39
+ "@unchainedshop/core-delivery": "^2.0.0-rc.4",
40
+ "@unchainedshop/core-enrollments": "^2.0.0-rc.4",
41
+ "@unchainedshop/core-events": "^2.0.0-rc.4",
42
+ "@unchainedshop/core-files": "^2.0.0-rc.4",
43
+ "@unchainedshop/core-filters": "^2.0.0-rc.4",
44
+ "@unchainedshop/core-languages": "^2.0.0-rc.4",
45
+ "@unchainedshop/core-messaging": "^2.0.0-rc.4",
46
+ "@unchainedshop/core-orders": "^2.0.0-rc.4",
47
+ "@unchainedshop/core-payment": "^2.0.0-rc.4",
48
+ "@unchainedshop/core-products": "^2.0.0-rc.4",
49
+ "@unchainedshop/core-quotations": "^2.0.0-rc.4",
50
+ "@unchainedshop/core-users": "^2.0.0-rc.4",
51
+ "@unchainedshop/core-warehousing": "^2.0.0-rc.4",
52
+ "@unchainedshop/core-worker": "^2.0.0-rc.4",
53
+ "@unchainedshop/logger": "^2.0.0-rc.4"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/node": "^18.11.18",
57
- "@unchainedshop/types": "^2.0.0-rc.2",
57
+ "@unchainedshop/types": "^2.0.0-rc.4",
58
58
  "jest": "^29.3.1",
59
59
  "ts-jest": "^29.0.3",
60
60
  "typescript": "^4.9.4"
package/src/core-index.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { UnchainedCore, UnchainedCoreOptions } from '@unchainedshop/types/core';
1
+ import { UnchainedCore, UnchainedCoreOptions } from '@unchainedshop/types/core.js';
2
2
  import { configureAccountsModule } from '@unchainedshop/core-accountsjs';
3
3
  import { configureAssortmentsModule } from '@unchainedshop/core-assortments';
4
4
  import { bookmarkServices, configureBookmarksModule } from '@unchainedshop/core-bookmarks';
package/tsconfig.json CHANGED
@@ -9,15 +9,15 @@
9
9
  "lib": [
10
10
  "esnext"
11
11
  ],
12
- "module": "esnext",
13
- "moduleResolution": "node",
12
+ "module": "Node16",
13
+ "moduleResolution": "Node16",
14
14
  "noImplicitReturns": true,
15
15
  "noUnusedLocals": false,
16
16
  "outDir": "lib",
17
17
  "preserveWatchOutput": true,
18
18
  "skipLibCheck": true,
19
19
  "sourceMap": true,
20
- "target": "esnext",
20
+ "target": "ES2022",
21
21
  "types": [
22
22
  "node",
23
23
  "jest"