omnius 1.0.332 → 1.0.333
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/index.js +2 -2
- package/npm-shrinkwrap.json +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -697818,7 +697818,7 @@ function getVersion3() {
|
|
|
697818
697818
|
for (const pkgPath of candidates) {
|
|
697819
697819
|
try {
|
|
697820
697820
|
if (!existsSync157(pkgPath)) continue;
|
|
697821
|
-
const pkg =
|
|
697821
|
+
const pkg = JSON.parse(readFileSync128(pkgPath, "utf8"));
|
|
697822
697822
|
if (pkg.name === "omnius" || pkg.name === "@omnius/cli" || pkg.name === "@omnius/monorepo") {
|
|
697823
697823
|
return pkg.version ?? "0.0.0";
|
|
697824
697824
|
}
|
|
@@ -707330,7 +707330,7 @@ function startApiServer(options2 = {}) {
|
|
|
707330
707330
|
}
|
|
707331
707331
|
setTimeout(() => process.exit(0), 3e3).unref();
|
|
707332
707332
|
}
|
|
707333
|
-
},
|
|
707333
|
+
}, 1e4);
|
|
707334
707334
|
versionWatch.unref();
|
|
707335
707335
|
}
|
|
707336
707336
|
const proto = useTls ? "https" : "http";
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.333",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.333",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
|
@@ -2393,9 +2393,9 @@
|
|
|
2393
2393
|
"license": "MIT"
|
|
2394
2394
|
},
|
|
2395
2395
|
"node_modules/axios": {
|
|
2396
|
-
"version": "1.18.
|
|
2397
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.18.
|
|
2398
|
-
"integrity": "sha512-
|
|
2396
|
+
"version": "1.18.1",
|
|
2397
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.18.1.tgz",
|
|
2398
|
+
"integrity": "sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==",
|
|
2399
2399
|
"license": "MIT",
|
|
2400
2400
|
"dependencies": {
|
|
2401
2401
|
"follow-redirects": "^1.16.0",
|
package/package.json
CHANGED