create-platformatic 2.0.0-alpha.11 → 2.0.0-alpha.12
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/package.json +9 -9
- package/src/index.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-platformatic",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.12",
|
|
4
4
|
"description": "Create platformatic application interactive tool",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
".": "./create-platformatic.mjs"
|
|
11
11
|
},
|
|
12
12
|
"bin": {
|
|
13
|
-
"create-platformatic
|
|
13
|
+
"create-platformatic": "./create-platformatic.mjs"
|
|
14
14
|
},
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"author": "Matteo Collina <hello@matteocollina.com>",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"strip-ansi": "^7.1.0",
|
|
35
35
|
"undici": "^6.9.0",
|
|
36
36
|
"which": "^3.0.1",
|
|
37
|
-
"@platformatic/config": "2.0.0-alpha.
|
|
38
|
-
"@platformatic/generators": "2.0.0-alpha.
|
|
39
|
-
"@platformatic/utils": "2.0.0-alpha.
|
|
37
|
+
"@platformatic/config": "2.0.0-alpha.12",
|
|
38
|
+
"@platformatic/generators": "2.0.0-alpha.12",
|
|
39
|
+
"@platformatic/utils": "2.0.0-alpha.12"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^22.5.0",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"neostandard": "^0.11.1",
|
|
52
52
|
"typescript": "~5.6.0",
|
|
53
53
|
"yaml": "^2.4.1",
|
|
54
|
-
"@platformatic/composer": "2.0.0-alpha.
|
|
55
|
-
"@platformatic/db": "2.0.0-alpha.
|
|
56
|
-
"@platformatic/runtime": "2.0.0-alpha.
|
|
57
|
-
"@platformatic/service": "2.0.0-alpha.
|
|
54
|
+
"@platformatic/composer": "2.0.0-alpha.12",
|
|
55
|
+
"@platformatic/db": "2.0.0-alpha.12",
|
|
56
|
+
"@platformatic/runtime": "2.0.0-alpha.12",
|
|
57
|
+
"@platformatic/service": "2.0.0-alpha.12"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"test:cli": "borp --pattern \"test/cli/*test.mjs\" --timeout=180000 --concurrency=1",
|
package/src/index.mjs
CHANGED
|
@@ -63,7 +63,7 @@ async function importOrLocal ({ pkgManager, name, projectDir, pkg }) {
|
|
|
63
63
|
|
|
64
64
|
let version = ''
|
|
65
65
|
|
|
66
|
-
if (defaultStackables.includes(pkg)) {
|
|
66
|
+
if (defaultStackables.includes(pkg) || pkg === '@platformatic/runtime') {
|
|
67
67
|
// Let's find if we are using one of the default stackables
|
|
68
68
|
// If we are, we have to use the "local" version of the package
|
|
69
69
|
|