@saltcorn/cli 1.4.0-rc.3 → 1.4.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.
@@ -2247,5 +2247,5 @@
2247
2247
  ]
2248
2248
  }
2249
2249
  },
2250
- "version": "1.4.0-rc.3"
2250
+ "version": "1.4.0"
2251
2251
  }
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.4.0-rc.3",
5
+ "version": "1.4.0",
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": "4.4.0",
13
13
  "@oclif/plugin-plugins": "^5.4.26",
14
- "@saltcorn/admin-models": "1.4.0-rc.3",
15
- "@saltcorn/common-code": "1.4.0-rc.3",
16
- "@saltcorn/data": "1.4.0-rc.3",
17
- "@saltcorn/mobile-app": "1.4.0-rc.3",
18
- "@saltcorn/mobile-builder": "1.4.0-rc.3",
19
- "@saltcorn/plugins-loader": "1.4.0-rc.3",
20
- "@saltcorn/server": "1.4.0-rc.3",
14
+ "@saltcorn/admin-models": "1.4.0",
15
+ "@saltcorn/common-code": "1.4.0",
16
+ "@saltcorn/data": "1.4.0",
17
+ "@saltcorn/mobile-app": "1.4.0",
18
+ "@saltcorn/mobile-builder": "1.4.0",
19
+ "@saltcorn/plugins-loader": "1.4.0",
20
+ "@saltcorn/server": "1.4.0",
21
21
  "contractis": "^0.1.0",
22
22
  "dateformat": "^4.6.3",
23
23
  "inquirer": "^12.3.3",
@@ -153,7 +153,7 @@ class ReleaseResumeCommand extends Command {
153
153
  stdio: "inherit",
154
154
  cwd: `packages/saltcorn-cli/`,
155
155
  });*/
156
- await publish("saltcorn-cli", "next");
156
+ await publish("saltcorn-cli");
157
157
  fs.writeFileSync(
158
158
  `package.json`,
159
159
  JSON.stringify(
@@ -217,7 +217,7 @@ class ReleaseCommand extends Command {
217
217
  stdio: "inherit",
218
218
  cwd: `packages/saltcorn-cli/`,
219
219
  });*/
220
- await publish("saltcorn-cli", "next");
220
+ await publish("saltcorn-cli");
221
221
  fs.writeFileSync(`package.json`, JSON.stringify(rootPackageJson, null, 2));
222
222
  // update Dockerfile
223
223
  const dockerfile = fs.readFileSync(`Dockerfile.release`, "utf8");