@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 CHANGED
@@ -11,4 +11,7 @@ export default {
11
11
  },
12
12
  ],
13
13
  },
14
+ moduleNameMapper: {
15
+ '(.+)\\.js': '$1',
16
+ },
14
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unchainedshop/core",
3
- "version": "2.0.0-rc.4",
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.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"
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.0-rc.4",
58
- "jest": "^29.3.1",
59
- "ts-jest": "^29.0.3",
60
- "typescript": "^4.9.4"
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
  }
@@ -0,0 +1,7 @@
1
+ describe('Bookmark', () => {
2
+
3
+ it('Check Bookmarks module', async () => {
4
+ expect(true).toBeTruthy()
5
+ });
6
+
7
+ });
package/tsconfig.json CHANGED
@@ -1,29 +1,11 @@
1
1
  {
2
+ "extends": "../shared/base.tsconfig.json",
2
3
  "compilerOptions": {
3
- "allowJs": true,
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
  }
@@ -1,3 +0,0 @@
1
- describe('Core', () => {
2
- it.todo("Core Tests")
3
- });