@unchainedshop/core 2.0.0-rc.4 → 2.0.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/jest.config.js +3 -0
- package/package.json +25 -25
- package/tests/core.test.ts +7 -0
- package/tsconfig.json +4 -22
- package/tests/core-index.test.js +0 -3
package/jest.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unchainedshop/core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"main": "lib/core-index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./lib/core-index.js",
|
|
@@ -31,32 +31,32 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/unchainedshop/unchained#readme",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@unchainedshop/core-accountsjs": "^2.0.
|
|
35
|
-
"@unchainedshop/core-assortments": "^2.0.
|
|
36
|
-
"@unchainedshop/core-bookmarks": "^2.0.
|
|
37
|
-
"@unchainedshop/core-countries": "^2.0.
|
|
38
|
-
"@unchainedshop/core-currencies": "^2.0.
|
|
39
|
-
"@unchainedshop/core-delivery": "^2.0.
|
|
40
|
-
"@unchainedshop/core-enrollments": "^2.0.
|
|
41
|
-
"@unchainedshop/core-events": "^2.0.
|
|
42
|
-
"@unchainedshop/core-files": "^2.0.
|
|
43
|
-
"@unchainedshop/core-filters": "^2.0.
|
|
44
|
-
"@unchainedshop/core-languages": "^2.0.
|
|
45
|
-
"@unchainedshop/core-messaging": "^2.0.
|
|
46
|
-
"@unchainedshop/core-orders": "^2.0.
|
|
47
|
-
"@unchainedshop/core-payment": "^2.0.
|
|
48
|
-
"@unchainedshop/core-products": "^2.0.
|
|
49
|
-
"@unchainedshop/core-quotations": "^2.0.
|
|
50
|
-
"@unchainedshop/core-users": "^2.0.
|
|
51
|
-
"@unchainedshop/core-warehousing": "^2.0.
|
|
52
|
-
"@unchainedshop/core-worker": "^2.0.
|
|
53
|
-
"@unchainedshop/logger": "^2.0.
|
|
34
|
+
"@unchainedshop/core-accountsjs": "^2.0.1",
|
|
35
|
+
"@unchainedshop/core-assortments": "^2.0.1",
|
|
36
|
+
"@unchainedshop/core-bookmarks": "^2.0.1",
|
|
37
|
+
"@unchainedshop/core-countries": "^2.0.1",
|
|
38
|
+
"@unchainedshop/core-currencies": "^2.0.1",
|
|
39
|
+
"@unchainedshop/core-delivery": "^2.0.1",
|
|
40
|
+
"@unchainedshop/core-enrollments": "^2.0.1",
|
|
41
|
+
"@unchainedshop/core-events": "^2.0.1",
|
|
42
|
+
"@unchainedshop/core-files": "^2.0.1",
|
|
43
|
+
"@unchainedshop/core-filters": "^2.0.1",
|
|
44
|
+
"@unchainedshop/core-languages": "^2.0.1",
|
|
45
|
+
"@unchainedshop/core-messaging": "^2.0.1",
|
|
46
|
+
"@unchainedshop/core-orders": "^2.0.1",
|
|
47
|
+
"@unchainedshop/core-payment": "^2.0.1",
|
|
48
|
+
"@unchainedshop/core-products": "^2.0.1",
|
|
49
|
+
"@unchainedshop/core-quotations": "^2.0.1",
|
|
50
|
+
"@unchainedshop/core-users": "^2.0.1",
|
|
51
|
+
"@unchainedshop/core-warehousing": "^2.0.1",
|
|
52
|
+
"@unchainedshop/core-worker": "^2.0.1",
|
|
53
|
+
"@unchainedshop/logger": "^2.0.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/node": "^18.11.18",
|
|
57
|
-
"@unchainedshop/types": "^2.0.
|
|
58
|
-
"jest": "^29.
|
|
59
|
-
"ts-jest": "^29.0.
|
|
60
|
-
"typescript": "^4.9.
|
|
57
|
+
"@unchainedshop/types": "^2.0.1",
|
|
58
|
+
"jest": "^29.4.1",
|
|
59
|
+
"ts-jest": "^29.0.5",
|
|
60
|
+
"typescript": "^4.9.5"
|
|
61
61
|
}
|
|
62
62
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,29 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
+
"extends": "../shared/base.tsconfig.json",
|
|
2
3
|
"compilerOptions": {
|
|
3
|
-
"
|
|
4
|
-
"allowSyntheticDefaultImports": true,
|
|
5
|
-
"declaration": true,
|
|
6
|
-
"esModuleInterop": true,
|
|
7
|
-
"experimentalDecorators": true,
|
|
8
|
-
"forceConsistentCasingInFileNames": true,
|
|
9
|
-
"lib": [
|
|
10
|
-
"esnext"
|
|
11
|
-
],
|
|
12
|
-
"module": "Node16",
|
|
13
|
-
"moduleResolution": "Node16",
|
|
14
|
-
"noImplicitReturns": true,
|
|
15
|
-
"noUnusedLocals": false,
|
|
4
|
+
"rootDir": "src",
|
|
16
5
|
"outDir": "lib",
|
|
17
|
-
"preserveWatchOutput": true,
|
|
18
|
-
"skipLibCheck": true,
|
|
19
|
-
"sourceMap": true,
|
|
20
|
-
"target": "ES2022",
|
|
21
|
-
"types": [
|
|
22
|
-
"node",
|
|
23
|
-
"jest"
|
|
24
|
-
]
|
|
25
6
|
},
|
|
7
|
+
"exclude": ["**/*.test.ts", "**/*.test.js", "tests"],
|
|
26
8
|
"include": [
|
|
27
|
-
"src"
|
|
9
|
+
"./src"
|
|
28
10
|
]
|
|
29
11
|
}
|
package/tests/core-index.test.js
DELETED