@zuplo/cli 1.105.0 → 1.107.0
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/CODEOWNERS +5 -0
- package/dist/common/deno-utils/locator.js +3 -3
- package/package.json +5 -3
package/CODEOWNERS
ADDED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="8edf8105-ebeb-518f-8885-8891eb778b11")}catch(e){}}();
|
|
3
3
|
import { existsSync } from "node:fs";
|
|
4
4
|
import { dirname, resolve } from "node:path";
|
|
5
5
|
import { fileURLToPath } from "node:url";
|
|
@@ -18,7 +18,7 @@ export async function locateDeno(dir) {
|
|
|
18
18
|
if (dir === ".") {
|
|
19
19
|
return undefined;
|
|
20
20
|
}
|
|
21
|
-
const pathToDeno = resolve(dir, "node_modules", "deno-bin", "bin", DENO_EXECUTABLE);
|
|
21
|
+
const pathToDeno = resolve(dir, "node_modules", "@zuplo/deno-bin", "bin", DENO_EXECUTABLE);
|
|
22
22
|
if (await existsSync(pathToDeno)) {
|
|
23
23
|
logger.debug(`Path to deno: ${pathToDeno}`);
|
|
24
24
|
return pathToDeno;
|
|
@@ -26,4 +26,4 @@ export async function locateDeno(dir) {
|
|
|
26
26
|
return locateDeno(dirname(dir));
|
|
27
27
|
}
|
|
28
28
|
//# sourceMappingURL=locator.js.map
|
|
29
|
-
//# debugId=
|
|
29
|
+
//# debugId=8edf8105-ebeb-518f-8885-8891eb778b11
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.107.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": "https://github.com/zuplo/cli",
|
|
6
6
|
"description": "The command-line interface for Zuplo",
|
|
7
7
|
"author": "Zuplo, Inc.",
|
|
8
8
|
"license": "See LICENSE in LICENSE.txt",
|
|
9
9
|
"scripts": {
|
|
10
|
+
"update:zuplo-dependencies-safely": "./scripts/update-zuplo-dependencies.sh",
|
|
10
11
|
"build": "tsc --build && node ./scripts/post-build.js",
|
|
11
12
|
"clean": "git clean -Xfde !.env",
|
|
12
13
|
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org zuplo --project zuplo-cli ./dist",
|
|
@@ -60,12 +61,13 @@
|
|
|
60
61
|
"@fastify/static": "^6.10.2",
|
|
61
62
|
"@google-cloud/tasks": "5.1.1",
|
|
62
63
|
"@inquirer/prompts": "^3.0.4",
|
|
64
|
+
"@opentelemetry/api": "^1.8.0",
|
|
63
65
|
"@sentry/node": "7.69.0",
|
|
64
66
|
"@swc/core": "1.3.78",
|
|
65
|
-
"@zuplo/core": "5.
|
|
67
|
+
"@zuplo/core": "5.1956.0",
|
|
66
68
|
"@zuplo/deno-bin": "1.37.1",
|
|
67
69
|
"@zuplo/pino-pretty-configurations": "^1.5.0",
|
|
68
|
-
"@zuplo/runtime": "5.
|
|
70
|
+
"@zuplo/runtime": "5.1956.0",
|
|
69
71
|
"chalk": "^5.1.2",
|
|
70
72
|
"chokidar": "^3.5.3",
|
|
71
73
|
"dotenv": "^16.3.1",
|