@vendure/create 2.1.0-next.3 → 2.1.0-next.5

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,4 +1,5 @@
1
1
  node_modules
2
2
  dist
3
+ admin-ui
3
4
  static/assets
4
5
  static/email/test-emails
@@ -13,7 +13,7 @@
13
13
  "outDir": "./dist",
14
14
  "baseUrl": "./"
15
15
  },
16
- "exclude": ["node_modules", "migration.ts"],
16
+ "exclude": ["node_modules", "migration.ts", "src/plugins/**/ui/*", "admin-ui"],
17
17
  "ts-node": {
18
18
  "files": true
19
19
  }
@@ -98,6 +98,9 @@ export const config: VendureConfig = {
98
98
  AdminUiPlugin.init({
99
99
  route: 'admin',
100
100
  port: 3002,
101
+ adminUiConfig: {
102
+ apiPort: 3000,
103
+ },
101
104
  }),
102
105
  ],
103
106
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendure/create",
3
- "version": "2.1.0-next.3",
3
+ "version": "2.1.0-next.5",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "create": "./index.js"
@@ -28,14 +28,14 @@
28
28
  "@types/fs-extra": "^9.0.1",
29
29
  "@types/handlebars": "^4.1.0",
30
30
  "@types/semver": "^6.2.2",
31
- "@vendure/core": "2.1.0-next.3",
31
+ "@vendure/core": "2.1.0-next.5",
32
32
  "rimraf": "^3.0.2",
33
33
  "ts-node": "^10.9.1",
34
34
  "typescript": "4.9.5"
35
35
  },
36
36
  "dependencies": {
37
37
  "@clack/prompts": "^0.7.0",
38
- "@vendure/common": "2.1.0-next.3",
38
+ "@vendure/common": "2.1.0-next.5",
39
39
  "commander": "^11.0.0",
40
40
  "cross-spawn": "^7.0.3",
41
41
  "detect-port": "^1.5.1",
@@ -45,5 +45,5 @@
45
45
  "semver": "^7.5.4",
46
46
  "tcp-port-used": "^1.0.2"
47
47
  },
48
- "gitHead": "89e9413b9c92e097a27a9ee7e183b3235c97ea80"
48
+ "gitHead": "b4b78ba7ac534e5995877e46421870b114f429de"
49
49
  }