@unchainedshop/core 1.1.3 → 1.1.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.
Files changed (3) hide show
  1. package/package.json +18 -18
  2. package/.versions +0 -21
  3. package/package.js +0 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unchainedshop/core",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "main": "lib/core-index.js",
5
5
  "types": "lib/core-index.d.ts",
6
6
  "type": "module",
@@ -28,30 +28,30 @@
28
28
  "homepage": "https://github.com/unchainedshop/unchained#readme",
29
29
  "dependencies": {
30
30
  "@unchainedshop/core-accountsjs": "^1.1.3",
31
- "@unchainedshop/core-assortments": "^1.1.4",
32
- "@unchainedshop/core-bookmarks": "^1.1.4",
33
- "@unchainedshop/core-countries": "^1.1.3",
34
- "@unchainedshop/core-currencies": "^1.1.3",
35
- "@unchainedshop/core-delivery": "^1.1.3",
36
- "@unchainedshop/core-enrollments": "^1.1.3",
37
- "@unchainedshop/core-events": "^1.1.3",
38
- "@unchainedshop/core-files": "^1.1.3",
31
+ "@unchainedshop/core-assortments": "^1.1.5",
32
+ "@unchainedshop/core-bookmarks": "^1.1.5",
33
+ "@unchainedshop/core-countries": "^1.1.4",
34
+ "@unchainedshop/core-currencies": "^1.1.4",
35
+ "@unchainedshop/core-delivery": "^1.1.4",
36
+ "@unchainedshop/core-enrollments": "^1.1.4",
37
+ "@unchainedshop/core-events": "^1.1.4",
38
+ "@unchainedshop/core-files": "^1.1.4",
39
39
  "@unchainedshop/core-filters": "^1.1.3",
40
- "@unchainedshop/core-languages": "^1.1.3",
41
- "@unchainedshop/core-messaging": "^1.1.3",
42
- "@unchainedshop/core-orders": "^1.1.3",
43
- "@unchainedshop/core-payment": "^1.1.4",
40
+ "@unchainedshop/core-languages": "^1.1.4",
41
+ "@unchainedshop/core-messaging": "^1.1.4",
42
+ "@unchainedshop/core-orders": "^1.1.4",
43
+ "@unchainedshop/core-payment": "^1.1.5",
44
44
  "@unchainedshop/core-products": "^1.1.3",
45
- "@unchainedshop/core-quotations": "^1.1.3",
46
- "@unchainedshop/core-users": "^1.1.3",
47
- "@unchainedshop/core-warehousing": "^1.1.3",
48
- "@unchainedshop/core-worker": "^1.1.3",
45
+ "@unchainedshop/core-quotations": "^1.1.4",
46
+ "@unchainedshop/core-users": "^1.1.4",
47
+ "@unchainedshop/core-warehousing": "^1.1.4",
48
+ "@unchainedshop/core-worker": "^1.1.4",
49
49
  "@unchainedshop/logger": "^1.1.3"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/chai": "^4.3.1",
53
53
  "@types/mocha": "^9.1.1",
54
- "@unchainedshop/types": "latest",
54
+ "@unchainedshop/types": "^1.1.2",
55
55
  "chai": "^4.3.6",
56
56
  "cross-env": "^7.0.3",
57
57
  "typescript": "^4.7.4"
package/.versions DELETED
@@ -1,21 +0,0 @@
1
- babel-compiler@7.9.0
2
- babel-runtime@1.5.1
3
- dynamic-import@0.7.2
4
- ecmascript@0.16.2
5
- ecmascript-runtime@0.8.0
6
- ecmascript-runtime-client@0.12.1
7
- ecmascript-runtime-server@0.11.0
8
- fetch@0.1.1
9
- inter-process-messaging@0.1.1
10
- local-test:unchained:core@1.1.1
11
- meteor@1.10.0
12
- meteortesting:browser-tests@0.1.2
13
- meteortesting:mocha@0.4.4
14
- modern-browsers@0.1.8
15
- modules@0.18.0
16
- modules-runtime@0.13.0
17
- practicalmeteor:mocha-core@1.0.1
18
- promise@0.12.0
19
- react-fast-refresh@0.2.3
20
- typescript@4.5.4
21
- unchained:core@1.1.1
package/package.js DELETED
@@ -1,26 +0,0 @@
1
- Package.describe({
2
- name: 'unchained:core',
3
- version: '1.1.3',
4
- summary: 'Unchained Engine Core: Core Umbrella',
5
- git: 'https://github.com/unchainedshop/unchained',
6
- documentation: 'README.md',
7
- });
8
-
9
- Package.onUse((api) => {
10
- api.versionsFrom('2.7.3');
11
-
12
- api.use('ecmascript');
13
- api.use('typescript');
14
-
15
- api.mainModule('src/core-index.ts', 'server');
16
- });
17
-
18
- Package.onTest((api) => {
19
- api.use('meteortesting:mocha');
20
- api.use('ecmascript');
21
- api.use('typescript');
22
-
23
- api.use('unchained:core@1.1.3');
24
-
25
- api.mainModule('test/core-index.tests.js');
26
- });