@zuplo/cli 1.61.0 → 1.63.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/LICENSE.txt CHANGED
@@ -0,0 +1,20 @@
1
+ Copyright (c) Zuplo, Inc. All rights reserved.
2
+
3
+ This software and associated documentation files (the "Software") is intended to be used
4
+ only by Zuplo customers solely to develop and test applications that will be deployed
5
+ to Zuplo hosted services. You and others in your organization may use these files on your
6
+ Development Devices solely for the above stated purpose.
7
+
8
+ Outside of uses stated above, no license is granted for any other purpose including
9
+ without limitation the rights to use, copy, modify, merge, publish, distribute,
10
+ sublicense, host, and/or sell copies of the Software.
11
+
12
+ The software may include third party components with separate legal notices or governed by
13
+ other agreements, as described in licenses either embedded in or accompanying the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
17
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
18
+ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20
+ DEALINGS IN THE SOFTWARE.
@@ -2,7 +2,7 @@ import * as Pino from "pino";
2
2
  export const logger = Pino.pino({
3
3
  level: process.env.LOG_LEVEL || "info",
4
4
  transport: {
5
- target: "./pino-pretty-module.cjs",
5
+ target: "@zuplo/pino-pretty-configurations",
6
6
  },
7
7
  });
8
8
  //# sourceMappingURL=logger.js.map
@@ -24,7 +24,7 @@ export class UserIsLoggedInValidator {
24
24
  },
25
25
  });
26
26
  if (!accountResponse.ok) {
27
- logger.trace({
27
+ logger.debug({
28
28
  status: accountResponse.status,
29
29
  statusText: accountResponse.statusText,
30
30
  }, "Failed to connect to Zuplo API during verification. Assuming user is not logged in.");
@@ -4,7 +4,6 @@ import { readFile } from "node:fs/promises";
4
4
  import { join, relative, resolve } from "node:path";
5
5
  import { fileURLToPath } from "node:url";
6
6
  import { locateDenoExecutable } from "../common/deno-utils/locator.js";
7
- import { logger } from "../common/logger.js";
8
7
  export async function dev(argv) {
9
8
  const sourceDirectory = resolve(join(relative(process.cwd(), argv.dir)));
10
9
  const zuploRuntimePath = new URL("../../node_modules/@zuplo/runtime", import.meta.url);
@@ -30,7 +29,6 @@ export async function dev(argv) {
30
29
  remoteModules: false,
31
30
  disableIntegratedDevPortalBuild: false,
32
31
  },
33
- logger: logger,
34
32
  });
35
33
  }
36
34
  //# sourceMappingURL=handler.js.map