platformatic 2.63.3 → 2.64.0
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/lib/install.js +4 -2
- package/lib/resolve.js +4 -2
- package/package.json +17 -17
package/lib/install.js
CHANGED
|
@@ -38,7 +38,7 @@ export async function install (argv) {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
-
await installDependencies(
|
|
41
|
+
const installed = await installDependencies(
|
|
42
42
|
logger,
|
|
43
43
|
configManager.dirname,
|
|
44
44
|
configManager.fullPath,
|
|
@@ -46,7 +46,9 @@ export async function install (argv) {
|
|
|
46
46
|
args['package-manager']
|
|
47
47
|
)
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
if (installed) {
|
|
50
|
+
logger.info('✅ All dependencies have been installed')
|
|
51
|
+
}
|
|
50
52
|
} catch (err) {
|
|
51
53
|
console.log(err)
|
|
52
54
|
process.exit(1)
|
package/lib/resolve.js
CHANGED
|
@@ -38,7 +38,7 @@ export async function resolve (argv) {
|
|
|
38
38
|
}
|
|
39
39
|
})
|
|
40
40
|
|
|
41
|
-
await resolveServices(
|
|
41
|
+
const resolved = await resolveServices(
|
|
42
42
|
logger,
|
|
43
43
|
configManager.dirname,
|
|
44
44
|
configManager.fullPath,
|
|
@@ -48,7 +48,9 @@ export async function resolve (argv) {
|
|
|
48
48
|
args.packageManager
|
|
49
49
|
)
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
if (resolved) {
|
|
52
|
+
logger.info('✅ All external services have been resolved')
|
|
53
|
+
}
|
|
52
54
|
} catch (err) {
|
|
53
55
|
console.log(err)
|
|
54
56
|
process.exit(1)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "platformatic",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.64.0",
|
|
4
4
|
"description": "Platformatic CLI",
|
|
5
5
|
"main": "cli.js",
|
|
6
6
|
"type": "module",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"mkdirp": "^2.1.6",
|
|
38
38
|
"neostandard": "^0.12.0",
|
|
39
39
|
"typescript": "^5.5.3",
|
|
40
|
-
"@platformatic/astro": "2.
|
|
41
|
-
"@platformatic/composer": "2.
|
|
42
|
-
"@platformatic/
|
|
43
|
-
"@platformatic/
|
|
44
|
-
"@platformatic/
|
|
45
|
-
"@platformatic/
|
|
46
|
-
"@platformatic/
|
|
47
|
-
"@platformatic/
|
|
40
|
+
"@platformatic/astro": "2.64.0",
|
|
41
|
+
"@platformatic/composer": "2.64.0",
|
|
42
|
+
"@platformatic/db": "2.64.0",
|
|
43
|
+
"@platformatic/next": "2.64.0",
|
|
44
|
+
"@platformatic/remix": "2.64.0",
|
|
45
|
+
"@platformatic/service": "2.64.0",
|
|
46
|
+
"@platformatic/vite": "2.64.0",
|
|
47
|
+
"@platformatic/node": "2.64.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@fastify/error": "^4.0.0",
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
"pino-pretty": "^13.0.0",
|
|
61
61
|
"split2": "^4.2.0",
|
|
62
62
|
"undici": "^7.0.0",
|
|
63
|
-
"@platformatic/basic": "2.
|
|
64
|
-
"@platformatic/
|
|
65
|
-
"@platformatic/client-cli": "2.
|
|
66
|
-
"@platformatic/
|
|
67
|
-
"@platformatic/
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"wattpm": "2.
|
|
63
|
+
"@platformatic/basic": "2.64.0",
|
|
64
|
+
"@platformatic/config": "2.64.0",
|
|
65
|
+
"@platformatic/client-cli": "2.64.0",
|
|
66
|
+
"@platformatic/control": "2.64.0",
|
|
67
|
+
"@platformatic/runtime": "2.64.0",
|
|
68
|
+
"create-platformatic": "2.64.0",
|
|
69
|
+
"@platformatic/utils": "2.64.0",
|
|
70
|
+
"wattpm": "2.64.0"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"test": "pnpm run lint && borp --no-timeout --concurrency 1",
|