@vendure/create 2.0.0-next.12 → 2.0.0-next.13
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.
|
@@ -46,7 +46,7 @@ export const config: VendureConfig = {
|
|
|
46
46
|
// See the README.md "Migrations" section for an explanation of
|
|
47
47
|
// the `synchronize` and `migrations` options.
|
|
48
48
|
synchronize: false,
|
|
49
|
-
migrations: [path.join(__dirname, './migrations
|
|
49
|
+
migrations: [path.join(__dirname, './migrations/*.+(js|ts)')],
|
|
50
50
|
logging: false,
|
|
51
51
|
database: {{#if isSQLjs}}new Uint8Array([]){{else if isSQLite}}path.join(__dirname, '../vendure.sqlite'){{else}}process.env.DB_NAME{{/if}},
|
|
52
52
|
{{#if dbSchema}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vendure/create",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.13",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create": "./index.js"
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"@types/handlebars": "^4.1.0",
|
|
29
29
|
"@types/listr": "^0.14.2",
|
|
30
30
|
"@types/semver": "^6.2.2",
|
|
31
|
-
"@vendure/core": "^2.0.0-next.
|
|
31
|
+
"@vendure/core": "^2.0.0-next.13",
|
|
32
32
|
"rimraf": "^3.0.2",
|
|
33
33
|
"ts-node": "^10.2.1",
|
|
34
34
|
"typescript": "4.5.5"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vendure/common": "^2.0.0-next.
|
|
37
|
+
"@vendure/common": "^2.0.0-next.13",
|
|
38
38
|
"chalk": "^4.1.0",
|
|
39
39
|
"commander": "^7.1.0",
|
|
40
40
|
"cross-spawn": "^7.0.3",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"semver": "^7.3.2",
|
|
48
48
|
"tcp-port-used": "^1.0.1"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "c4877c253da7ad10dd26450e9a1b1e06901d5872"
|
|
51
51
|
}
|