@unchainedshop/core 1.1.7 → 1.1.9

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 } from '@unchainedshop/types/core';
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": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "main": "lib/core-index.js",
5
5
  "types": "lib/core-index.d.ts",
6
6
  "type": "module",
@@ -26,34 +26,34 @@
26
26
  },
27
27
  "homepage": "https://github.com/unchainedshop/unchained#readme",
28
28
  "dependencies": {
29
- "@unchainedshop/core-accountsjs": "^1.1.7",
30
- "@unchainedshop/core-assortments": "^1.1.7",
31
- "@unchainedshop/core-bookmarks": "^1.1.7",
32
- "@unchainedshop/core-countries": "^1.1.7",
33
- "@unchainedshop/core-currencies": "^1.1.7",
34
- "@unchainedshop/core-delivery": "^1.1.7",
35
- "@unchainedshop/core-enrollments": "^1.1.7",
36
- "@unchainedshop/core-events": "^1.1.7",
37
- "@unchainedshop/core-files": "^1.1.7",
38
- "@unchainedshop/core-filters": "^1.1.7",
39
- "@unchainedshop/core-languages": "^1.1.7",
40
- "@unchainedshop/core-messaging": "^1.1.7",
41
- "@unchainedshop/core-orders": "^1.1.7",
42
- "@unchainedshop/core-payment": "^1.1.7",
43
- "@unchainedshop/core-products": "^1.1.7",
44
- "@unchainedshop/core-quotations": "^1.1.7",
45
- "@unchainedshop/core-users": "^1.1.7",
46
- "@unchainedshop/core-warehousing": "^1.1.7",
47
- "@unchainedshop/core-worker": "^1.1.7",
48
- "@unchainedshop/logger": "^1.1.7"
29
+ "@unchainedshop/core-accountsjs": "^1.1.9",
30
+ "@unchainedshop/core-assortments": "^1.1.9",
31
+ "@unchainedshop/core-bookmarks": "^1.1.9",
32
+ "@unchainedshop/core-countries": "^1.1.9",
33
+ "@unchainedshop/core-currencies": "^1.1.9",
34
+ "@unchainedshop/core-delivery": "^1.1.9",
35
+ "@unchainedshop/core-enrollments": "^1.1.9",
36
+ "@unchainedshop/core-events": "^1.1.9",
37
+ "@unchainedshop/core-files": "^1.1.9",
38
+ "@unchainedshop/core-filters": "^1.1.9",
39
+ "@unchainedshop/core-languages": "^1.1.9",
40
+ "@unchainedshop/core-messaging": "^1.1.9",
41
+ "@unchainedshop/core-orders": "^1.1.9",
42
+ "@unchainedshop/core-payment": "^1.1.9",
43
+ "@unchainedshop/core-products": "^1.1.9",
44
+ "@unchainedshop/core-quotations": "^1.1.9",
45
+ "@unchainedshop/core-users": "^1.1.9",
46
+ "@unchainedshop/core-warehousing": "^1.1.9",
47
+ "@unchainedshop/core-worker": "^1.1.9",
48
+ "@unchainedshop/logger": "^1.1.9"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/chai": "^4.3.1",
52
52
  "@types/mocha": "^9.1.1",
53
- "@unchainedshop/types": "^1.1.7",
53
+ "@unchainedshop/types": "^1.1.9",
54
54
  "chai": "^4.3.6",
55
55
  "cross-env": "^7.0.3",
56
56
  "typescript": "^4.7.4"
57
57
  },
58
- "gitHead": "06cd41a39f57481555c743836481b9190b2ec2b5"
58
+ "gitHead": "5395cd35169a1fd13bb83ff7d11cc8a162b27b09"
59
59
  }
@@ -6,7 +6,9 @@
6
6
  "esModuleInterop": true,
7
7
  "experimentalDecorators": true,
8
8
  "forceConsistentCasingInFileNames": true,
9
- "lib": ["esnext"],
9
+ "lib": [
10
+ "esnext"
11
+ ],
10
12
  "module": "esnext",
11
13
  "moduleResolution": "node",
12
14
  "noImplicitReturns": true,
@@ -16,11 +18,17 @@
16
18
  "skipLibCheck": true,
17
19
  "sourceMap": true,
18
20
  "target": "esnext",
19
- "types": ["node"],
21
+ "types": [
22
+ "node"
23
+ ],
20
24
  "baseUrl": ".", // This must be specified if "paths" is.
21
25
  "paths": {
22
- "meteor/unchained:*": ["node_modules/@unchainedshop/types/index.d.ts"]
26
+ "@unchainedshop/*": [
27
+ "node_modules/@unchainedshop/types/index.d.ts"
28
+ ]
23
29
  }
24
30
  },
25
- "include": ["src"]
31
+ "include": [
32
+ "src"
33
+ ]
26
34
  }