@neon-rs/cli 0.0.50 → 0.0.52
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.
- package/index.js +9 -7
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -10450,8 +10450,6 @@ var __webpack_exports__ = {};
|
|
|
10450
10450
|
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
10451
10451
|
(() => {
|
|
10452
10452
|
|
|
10453
|
-
// EXTERNAL MODULE: external "node:module"
|
|
10454
|
-
var external_node_module_ = __nccwpck_require__(2033);
|
|
10455
10453
|
// EXTERNAL MODULE: ../../node_modules/command-line-commands/index.js
|
|
10456
10454
|
var command_line_commands = __nccwpck_require__(5908);
|
|
10457
10455
|
var command_line_commands_default = /*#__PURE__*/__nccwpck_require__.n(command_line_commands);
|
|
@@ -15263,7 +15261,7 @@ var CommandName;
|
|
|
15263
15261
|
CommandName["Dist"] = "dist";
|
|
15264
15262
|
CommandName["PackBuild"] = "pack-build";
|
|
15265
15263
|
CommandName["InstallBuilds"] = "install-builds";
|
|
15266
|
-
})(CommandName
|
|
15264
|
+
})(CommandName || (CommandName = {}));
|
|
15267
15265
|
;
|
|
15268
15266
|
function isCommandName(s) {
|
|
15269
15267
|
const keys = Object.values(CommandName);
|
|
@@ -15366,13 +15364,17 @@ function printError(e) {
|
|
|
15366
15364
|
|
|
15367
15365
|
;// CONCATENATED MODULE: ./src/index.ts
|
|
15368
15366
|
|
|
15369
|
-
const absoluteRequire = (0,external_node_module_.createRequire)(import.meta.url);
|
|
15370
|
-
global['require'] = function (spec) {
|
|
15371
|
-
return absoluteRequire(spec);
|
|
15372
|
-
};
|
|
15373
15367
|
|
|
15374
15368
|
|
|
15369
|
+
/*
|
|
15370
|
+
import { createRequire } from 'node:module';
|
|
15371
|
+
|
|
15372
|
+
const absoluteRequire = createRequire(import.meta.url);
|
|
15375
15373
|
|
|
15374
|
+
global['require'] = function(spec: string) {
|
|
15375
|
+
return absoluteRequire(spec);
|
|
15376
|
+
} as any;
|
|
15377
|
+
*/
|
|
15376
15378
|
class Cli {
|
|
15377
15379
|
parse() {
|
|
15378
15380
|
try {
|