@neon-rs/cli 0.0.136 → 0.0.139

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.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -12202,6 +12202,7 @@ class InstallBuilds {
12202
12202
  this.log(`reading package.json (CWD=${process.cwd()})`);
12203
12203
  const manifest = JSON.parse(await promises_namespaceObject.readFile(external_node_path_namespaceObject.join(process.cwd(), 'package.json'), { encoding: 'utf8' }));
12204
12204
  const version = manifest.version;
12205
+ this.log(`package.json before: ${JSON.stringify(manifest)}`);
12205
12206
  this.log(`determined version: ${version}`);
12206
12207
  const targets = Object.values(manifest.neon.targets);
12207
12208
  const specs = targets.map(name => `${name}@${version}`);
@@ -12212,6 +12213,7 @@ class InstallBuilds {
12212
12213
  console.error(result.stderr);
12213
12214
  process.exit(result.exitCode);
12214
12215
  }
12216
+ this.log(`package.json after: ${await promises_namespaceObject.readFile(external_node_path_namespaceObject.join(process.cwd(), "package.json"))}`);
12215
12217
  if (!this._bundle) {
12216
12218
  return;
12217
12219
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neon-rs/cli",
3
- "version": "0.0.136",
3
+ "version": "0.0.139",
4
4
  "description": "Command-line build tool for Neon modules.",
5
5
  "type": "module",
6
6
  "exports": "./index.js",