@neon-rs/cli 0.0.73 → 0.0.75

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 +7 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13485,8 +13485,6 @@ var lib = __nccwpck_require__(4071);
13485
13485
  ;// CONCATENATED MODULE: ./node_modules/cargo-messages/lib/index.mjs
13486
13486
 
13487
13487
 
13488
-
13489
-
13490
13488
  ;// CONCATENATED MODULE: ./src/commands/dist.ts
13491
13489
 
13492
13490
 
@@ -15423,10 +15421,17 @@ function printError(e) {
15423
15421
  console.error(chalk_source.bold.red("error:") + " " + ((e instanceof Error) ? e.message : String(e)));
15424
15422
  }
15425
15423
 
15424
+ ;// CONCATENATED MODULE: external "node:module"
15425
+ const external_node_module_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:module");
15426
15426
  ;// CONCATENATED MODULE: ./src/index.ts
15427
15427
 
15428
15428
 
15429
15429
 
15430
+
15431
+ const absoluteRequire = (0,external_node_module_namespaceObject.createRequire)(import.meta.url);
15432
+ global['require'] = function (spec) {
15433
+ return absoluteRequire(spec);
15434
+ };
15430
15435
  class Cli {
15431
15436
  parse() {
15432
15437
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neon-rs/cli",
3
- "version": "0.0.73",
3
+ "version": "0.0.75",
4
4
  "description": "Command-line build tool for Neon modules.",
5
5
  "type": "module",
6
6
  "exports": "./index.js",