@nasl/cli 0.3.2 → 0.3.3
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 +2 -2
- package/dist/bin/naslc.mjs +2 -2
- package/dist/index.mjs +1 -1
- package/out/apis/createAxios.js +1 -1
- package/package.json +1 -1
package/dist/bin/nasl.mjs
CHANGED
|
@@ -29148,7 +29148,7 @@ async function createAxios(options) {
|
|
|
29148
29148
|
const instance = axios.create({
|
|
29149
29149
|
baseURL,
|
|
29150
29150
|
headers,
|
|
29151
|
-
timeout:
|
|
29151
|
+
timeout: 480000,
|
|
29152
29152
|
});
|
|
29153
29153
|
const oldPost = instance.post;
|
|
29154
29154
|
instance.post = async (url, data, config) => {
|
|
@@ -39384,7 +39384,7 @@ async function installByJSON(json, options) {
|
|
|
39384
39384
|
logger.success(`成功写入 ${writtenCount} 个依赖文件到 ${config.srcDir} 目录`);
|
|
39385
39385
|
}
|
|
39386
39386
|
|
|
39387
|
-
var version = "0.3.
|
|
39387
|
+
var version = "0.3.3";
|
|
39388
39388
|
var pkg = {
|
|
39389
39389
|
version: version};
|
|
39390
39390
|
|
package/dist/bin/naslc.mjs
CHANGED
|
@@ -29078,7 +29078,7 @@ async function createAxios(options) {
|
|
|
29078
29078
|
const instance = axios.create({
|
|
29079
29079
|
baseURL,
|
|
29080
29080
|
headers,
|
|
29081
|
-
timeout:
|
|
29081
|
+
timeout: 480000,
|
|
29082
29082
|
});
|
|
29083
29083
|
const oldPost = instance.post;
|
|
29084
29084
|
instance.post = async (url, data, config) => {
|
|
@@ -38445,7 +38445,7 @@ async function tryCompile(entry, options) {
|
|
|
38445
38445
|
}
|
|
38446
38446
|
}
|
|
38447
38447
|
|
|
38448
|
-
var version = "0.3.
|
|
38448
|
+
var version = "0.3.3";
|
|
38449
38449
|
var pkg = {
|
|
38450
38450
|
version: version};
|
|
38451
38451
|
|
package/dist/index.mjs
CHANGED
|
@@ -35086,7 +35086,7 @@ async function createAxios(options) {
|
|
|
35086
35086
|
const instance = axios.create({
|
|
35087
35087
|
baseURL,
|
|
35088
35088
|
headers,
|
|
35089
|
-
timeout:
|
|
35089
|
+
timeout: 480000,
|
|
35090
35090
|
});
|
|
35091
35091
|
const oldPost = instance.post;
|
|
35092
35092
|
instance.post = async (url, data, config) => {
|
package/out/apis/createAxios.js
CHANGED
package/package.json
CHANGED