@faable/faable 1.2.9 → 1.3.1

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 {
@@ -3,7 +3,7 @@ import { cmd } from './cmd.js';
3
3
 
4
4
  const upload_tag = async (args) => {
5
5
  const { api, app, tagname } = args;
6
- log.info(`Uploading ${tagname}`);
6
+ log.info(`🔁 Uploading...`);
7
7
  const registry = await api.getRegistry(app.id);
8
8
  // Registry login
9
9
  const { user, password, hostname, image } = registry;
@@ -15,6 +15,7 @@ const upload_tag = async (args) => {
15
15
  // Upload the image to faable registry
16
16
  await cmd("docker", ["push", image_tag]);
17
17
  log.info(`✅ Upload completed.`);
18
+ log.info(`🌍 Deployed on ${app.url}`);
18
19
  };
19
20
 
20
21
  export { upload_tag };
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.9"
29
+ "version": "1.3.1"
30
30
  }