@faable/faable 1.3.4 → 1.3.5

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.
@@ -10,6 +10,7 @@ import path__default from 'path';
10
10
 
11
11
  const get_app = async (api, app_slug, workdir) => {
12
12
  let slug;
13
+ console.log("slug", app_slug);
13
14
  if (app_slug) {
14
15
  slug = app_slug;
15
16
  }
@@ -1,13 +1,13 @@
1
1
  import { deploy_command } from './deploy_command.js';
2
2
 
3
3
  const deploy = {
4
- command: "deploy [app_name]",
4
+ command: "deploy [app_slug]",
5
5
  describe: "Deploy a faable app",
6
6
  builder: (yargs) => {
7
7
  return yargs
8
8
  .positional("app_slug", {
9
9
  type: "string",
10
- description: "App name to build for",
10
+ description: "App slug",
11
11
  })
12
12
  .option("workdir", {
13
13
  alias: "w",
@@ -16,7 +16,7 @@ const deploy = {
16
16
  })
17
17
  .showHelpOnFail(false);
18
18
  },
19
- handler: async (args) => deploy_command(args),
19
+ handler: deploy_command,
20
20
  };
21
21
 
22
22
  export { deploy };
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.3.4"
29
+ "version": "1.3.5"
30
30
  }