@faable/faable 1.5.3 → 1.5.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.
@@ -22,7 +22,7 @@ const strategy_nodejs = async (workdir) => {
22
22
  try {
23
23
  const check_cmd = `npm view node@"${engines.node}" version | tail -n 1 | cut -d "'" -f2`;
24
24
  const out = await cmd(check_cmd);
25
- runtime_version = out.stdout.toString();
25
+ runtime_version = out.stdout.toString().trim();
26
26
  log.info(`Using node@${runtime_version} from engines in package.json (${engines.node})`);
27
27
  }
28
28
  catch (e) {
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "yaml": "^2.8.2",
15
15
  "yargs": "^18.0.0"
16
16
  },
17
- "version": "1.5.3",
17
+ "version": "1.5.5",
18
18
  "bin": {
19
19
  "faable": "bin/faable.js"
20
20
  },