lowdefy 4.0.0-alpha.8 → 4.0.0-alpha.9
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/commands/build/build.js +1 -1
- package/dist/commands/dev/dev.js +1 -1
- package/dist/commands/dev/runDevServer.js +1 -1
- package/dist/commands/init/init.js +1 -1
- package/dist/commands/init/lowdefyFile.js +2 -2
- package/dist/commands/start/runStart.js +1 -1
- package/dist/commands/start/start.js +1 -1
- package/dist/index.js +1 -1
- package/dist/utils/BatchChanges.js +1 -1
- package/dist/utils/addCustomPluginsAsDeps.js +1 -1
- package/dist/utils/checkForUpdatedVersions.js +1 -1
- package/dist/utils/copyPluginsFolder.js +1 -1
- package/dist/utils/createPrint.js +1 -1
- package/dist/utils/errorHandler.js +1 -1
- package/dist/utils/fetchNpmTarball.js +1 -1
- package/dist/utils/findOpenPort.js +1 -1
- package/dist/utils/getCliJson.js +1 -1
- package/dist/utils/getDirectories.js +1 -1
- package/dist/utils/getLowdefyYaml.js +1 -1
- package/dist/utils/getOptions.js +1 -1
- package/dist/utils/getPackageManager.js +1 -1
- package/dist/utils/getSendTelemetry.js +1 -1
- package/dist/utils/getServer.js +1 -1
- package/dist/utils/installServer.js +1 -1
- package/dist/utils/runCommand.js +1 -1
- package/dist/utils/runLowdefyBuild.js +1 -1
- package/dist/utils/runNextBuild.js +1 -1
- package/dist/utils/startUp.js +1 -1
- package/package.json +4 -4
package/dist/commands/dev/dev.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -36,7 +36,7 @@ pages:
|
|
|
36
36
|
title: Welcome to your Lowdefy app
|
|
37
37
|
subTitle: We are excited to see what you are going to build
|
|
38
38
|
icon:
|
|
39
|
-
name:
|
|
39
|
+
name: AiOutlineHeart
|
|
40
40
|
color: '#f00'
|
|
41
41
|
areas:
|
|
42
42
|
extra:
|
package/dist/index.js
CHANGED
package/dist/utils/getCliJson.js
CHANGED
package/dist/utils/getOptions.js
CHANGED
package/dist/utils/getServer.js
CHANGED
package/dist/utils/runCommand.js
CHANGED
package/dist/utils/startUp.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lowdefy",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.9",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Lowdefy CLI",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"test": "FORCE_COLOR=3 yarn node --experimental-vm-modules $(yarn bin jest)"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@lowdefy/helpers": "4.0.0-alpha.
|
|
44
|
-
"@lowdefy/node-utils": "4.0.0-alpha.
|
|
43
|
+
"@lowdefy/helpers": "4.0.0-alpha.9",
|
|
44
|
+
"@lowdefy/node-utils": "4.0.0-alpha.9",
|
|
45
45
|
"axios": "0.25.0",
|
|
46
46
|
"chalk": "4.1.2",
|
|
47
47
|
"commander": "9.0.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "98b544eca231bdcfca6c3a8601a891835d5ce571"
|
|
65
65
|
}
|