@saltcorn/cli 1.0.0-beta.5 → 1.0.0-beta.7
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/README.md +46 -46
- package/npm-shrinkwrap.json +17416 -12248
- package/oclif.manifest.json +1 -1
- package/package.json +8 -8
- package/src/commands/dev/release.js +4 -1
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@saltcorn/cli",
|
|
3
3
|
"description": "Command-line interface for Saltcorn, open-source no-code platform",
|
|
4
4
|
"homepage": "https://saltcorn.com",
|
|
5
|
-
"version": "1.0.0-beta.
|
|
5
|
+
"version": "1.0.0-beta.7",
|
|
6
6
|
"author": "Tom Nielsen @glutamate",
|
|
7
7
|
"bin": {
|
|
8
8
|
"saltcorn": "./bin/saltcorn"
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^2.16.0",
|
|
13
13
|
"@oclif/plugin-plugins": "^3.9.4",
|
|
14
|
-
"@saltcorn/admin-models": "1.0.0-beta.
|
|
15
|
-
"@saltcorn/common-code": "1.0.0-beta.
|
|
16
|
-
"@saltcorn/data": "1.0.0-beta.
|
|
17
|
-
"@saltcorn/mobile-app": "1.0.0-beta.
|
|
18
|
-
"@saltcorn/mobile-builder": "1.0.0-beta.
|
|
19
|
-
"@saltcorn/plugins-loader": "1.0.0-beta.
|
|
20
|
-
"@saltcorn/server": "1.0.0-beta.
|
|
14
|
+
"@saltcorn/admin-models": "1.0.0-beta.7",
|
|
15
|
+
"@saltcorn/common-code": "1.0.0-beta.7",
|
|
16
|
+
"@saltcorn/data": "1.0.0-beta.7",
|
|
17
|
+
"@saltcorn/mobile-app": "1.0.0-beta.7",
|
|
18
|
+
"@saltcorn/mobile-builder": "1.0.0-beta.7",
|
|
19
|
+
"@saltcorn/plugins-loader": "1.0.0-beta.7",
|
|
20
|
+
"@saltcorn/server": "1.0.0-beta.7",
|
|
21
21
|
"contractis": "^0.1.0",
|
|
22
22
|
"dateformat": "^3.0.3",
|
|
23
23
|
"inquirer": "^7.3.3",
|
|
@@ -125,7 +125,10 @@ class ReleaseCommand extends Command {
|
|
|
125
125
|
});
|
|
126
126
|
for (const p of Object.values(pkgs)) {
|
|
127
127
|
updatePkgJson(p.dir);
|
|
128
|
-
if (p.publish)
|
|
128
|
+
if (p.publish) {
|
|
129
|
+
publish(p.dir);
|
|
130
|
+
await sleep(1000);
|
|
131
|
+
}
|
|
129
132
|
}
|
|
130
133
|
|
|
131
134
|
// for cli:
|