@nasl/cli 0.3.2 → 0.3.4
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/dist/bin/nasl.mjs +157 -111
- package/dist/bin/nasl.mjs.map +1 -1
- package/dist/bin/naslc.mjs +3 -2
- package/dist/bin/naslc.mjs.map +1 -1
- package/dist/index.mjs +144 -84
- package/dist/index.mjs.map +1 -1
- package/out/apis/appApi.d.ts +17 -0
- package/out/apis/appApi.d.ts.map +1 -0
- package/out/apis/appApi.js +36 -0
- package/out/apis/appApi.js.map +1 -0
- package/out/apis/createAxios.js +1 -1
- package/out/apis/index.d.ts +1 -1
- package/out/apis/index.d.ts.map +1 -1
- package/out/apis/index.js +1 -1
- package/out/apis/index.js.map +1 -1
- package/out/bin/nasl.js +14 -61
- package/out/bin/nasl.js.map +1 -1
- package/out/commands/createAppInIde.d.ts +0 -3
- package/out/commands/createAppInIde.d.ts.map +1 -1
- package/out/commands/createAppInIde.js +26 -93
- package/out/commands/createAppInIde.js.map +1 -1
- package/out/commands/index.d.ts +1 -0
- package/out/commands/index.d.ts.map +1 -1
- package/out/commands/index.js +1 -0
- package/out/commands/index.js.map +1 -1
- package/out/commands/updateAppInIde.d.ts +3 -0
- package/out/commands/updateAppInIde.d.ts.map +1 -0
- package/out/commands/updateAppInIde.js +59 -0
- package/out/commands/updateAppInIde.js.map +1 -0
- package/out/utils/appName.d.ts +8 -0
- package/out/utils/appName.d.ts.map +1 -0
- package/out/utils/appName.js +71 -0
- package/out/utils/appName.js.map +1 -0
- package/out/utils/prompt.d.ts +5 -0
- package/out/utils/prompt.d.ts.map +1 -0
- package/out/utils/prompt.js +54 -0
- package/out/utils/prompt.js.map +1 -0
- package/package.json +1 -1
package/dist/bin/naslc.mjs
CHANGED
|
@@ -17,6 +17,7 @@ import require$$0$6 from 'url';
|
|
|
17
17
|
import crypto$1, { createHash } from 'crypto';
|
|
18
18
|
import http2 from 'http2';
|
|
19
19
|
import zlib from 'zlib';
|
|
20
|
+
import 'readline';
|
|
20
21
|
|
|
21
22
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
22
23
|
|
|
@@ -29078,7 +29079,7 @@ async function createAxios(options) {
|
|
|
29078
29079
|
const instance = axios.create({
|
|
29079
29080
|
baseURL,
|
|
29080
29081
|
headers,
|
|
29081
|
-
timeout:
|
|
29082
|
+
timeout: 480000,
|
|
29082
29083
|
});
|
|
29083
29084
|
const oldPost = instance.post;
|
|
29084
29085
|
instance.post = async (url, data, config) => {
|
|
@@ -38445,7 +38446,7 @@ async function tryCompile(entry, options) {
|
|
|
38445
38446
|
}
|
|
38446
38447
|
}
|
|
38447
38448
|
|
|
38448
|
-
var version = "0.3.
|
|
38449
|
+
var version = "0.3.4";
|
|
38449
38450
|
var pkg = {
|
|
38450
38451
|
version: version};
|
|
38451
38452
|
|