lowdefy 4.6.0 → 4.7.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/dist/utils/getOptions.js
CHANGED
|
@@ -14,11 +14,6 @@
|
|
|
14
14
|
limitations under the License.
|
|
15
15
|
*/ import { spawnProcess } from '@lowdefy/node-utils';
|
|
16
16
|
async function installServer({ context, directory }) {
|
|
17
|
-
// Skip dependency installation for local development (monorepo already has deps installed)
|
|
18
|
-
if (context.lowdefyVersion === 'local') {
|
|
19
|
-
context.logger.info('Skipping dependency installation for local development.');
|
|
20
|
-
return;
|
|
21
|
-
}
|
|
22
17
|
context.logger.info({
|
|
23
18
|
spin: 'start'
|
|
24
19
|
}, 'Installing dependencies.');
|
|
@@ -37,7 +32,9 @@ async function installServer({ context, directory }) {
|
|
|
37
32
|
}
|
|
38
33
|
});
|
|
39
34
|
} catch (error) {
|
|
40
|
-
|
|
35
|
+
context.logger.info({
|
|
36
|
+
spin: 'fail'
|
|
37
|
+
}, 'Installing dependencies.');
|
|
41
38
|
throw new Error('Dependency installation failed.');
|
|
42
39
|
}
|
|
43
40
|
context.logger.info('Dependencies install successfully.');
|
package/dist/utils/runCommand.js
CHANGED
|
@@ -41,6 +41,9 @@ async function runLowdefyBuild({ context, directory }) {
|
|
|
41
41
|
}
|
|
42
42
|
});
|
|
43
43
|
} catch (error) {
|
|
44
|
+
context.logger.info({
|
|
45
|
+
spin: 'fail'
|
|
46
|
+
}, 'Running Lowdefy build.');
|
|
44
47
|
throw new Error('Lowdefy build failed.');
|
|
45
48
|
}
|
|
46
49
|
context.logger.info('Lowdefy build successful.');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lowdefy",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Lowdefy CLI",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
],
|
|
33
33
|
"exports": "./dist/index.js",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@lowdefy/errors": "4.
|
|
36
|
-
"@lowdefy/helpers": "4.
|
|
37
|
-
"@lowdefy/logger": "4.
|
|
38
|
-
"@lowdefy/node-utils": "4.
|
|
35
|
+
"@lowdefy/errors": "4.7.0",
|
|
36
|
+
"@lowdefy/helpers": "4.7.0",
|
|
37
|
+
"@lowdefy/logger": "4.7.0",
|
|
38
|
+
"@lowdefy/node-utils": "4.7.0",
|
|
39
39
|
"axios": "1.8.2",
|
|
40
40
|
"commander": "11.1.0",
|
|
41
41
|
"decompress": "4.2.1",
|