@faable/faable 1.2.8 → 1.3.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.
@@ -37,7 +37,6 @@ const bundle_docker = async (props) => {
37
37
  "-c",
38
38
  `docker build -t ${tagname} ${workdir} -f -<<EOF\n${dockerfile}\nEOF`,
39
39
  ];
40
- console.log(command.join(" "));
41
40
  await cmd("/bin/bash", command, { timeout, enableOutput: true });
42
41
  log.info(`⚙️ Image ready [tag:${tagname}]`);
43
42
  return {
@@ -6,7 +6,7 @@ const deploy = {
6
6
  describe: "Deploy a faable app",
7
7
  builder: (yargs) => {
8
8
  return yargs
9
- .positional("app_name", {
9
+ .positional("app_slug", {
10
10
  type: "string",
11
11
  description: "App name to build for",
12
12
  default: (s) => {
package/package.json CHANGED
@@ -26,5 +26,5 @@
26
26
  "access": "public"
27
27
  },
28
28
  "homepage": "https://github.com/faablecloud/faable#readme",
29
- "version": "1.2.8"
29
+ "version": "1.3.0"
30
30
  }