@nuxt/kit 3.6.0 → 3.6.2

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/README.md CHANGED
@@ -55,7 +55,7 @@ Nuxt's goal is to make web development intuitive and performant, with a great de
55
55
  <td>
56
56
  <h3>Examples</h3>
57
57
  <p>
58
- Explore different ways of using Nuxt features and get inspired with <a href="https://nuxt.com/docs/examples/essentials/hello-world">our list of examples</a>.
58
+ Explore different ways of using Nuxt features and get inspired with <a href="https://nuxt.com/docs/examples/hello-world">our list of examples</a>.
59
59
  </p>
60
60
  </td>
61
61
  </tr>
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import { Configuration, WebpackPluginInstance } from 'webpack';
5
5
  import { UserConfig, Plugin } from 'vite';
6
6
  import * as unctx_index from 'unctx/index';
7
7
  import { NitroRouteConfig, NitroEventHandler, NitroDevEventHandler, Nitro } from 'nitropack';
8
- import * as consola_dist_consola_3fef035a from 'consola/dist/consola-3fef035a';
8
+ import * as consola_dist_core from 'consola/dist/core';
9
9
  import { genSafeVariableName } from 'knitwork';
10
10
 
11
11
  /**
@@ -342,8 +342,8 @@ declare function updateTemplates(options?: {
342
342
  filter?: (template: ResolvedNuxtTemplate<any>) => boolean;
343
343
  }): Promise<any>;
344
344
 
345
- declare const logger: consola_dist_consola_3fef035a.a;
346
- declare function useLogger(tag?: string): consola_dist_consola_3fef035a.a;
345
+ declare const logger: consola_dist_core.ConsolaInstance;
346
+ declare function useLogger(tag?: string): consola_dist_core.ConsolaInstance;
347
347
 
348
348
  /** @deprecated Do not use CJS utils */
349
349
  interface ResolveModuleOptions {
package/dist/index.mjs CHANGED
@@ -2140,7 +2140,7 @@ ${issues.toString()}`);
2140
2140
  const res = await module.setup?.call(null, _options, nuxt) ?? {};
2141
2141
  const perf = performance.measure(key, mark?.name);
2142
2142
  const setupTime = perf ? Math.round(perf.duration * 100) / 100 : 0;
2143
- if (setupTime > 5e3) {
2143
+ if (setupTime > 5e3 && uniqueKey !== "@nuxt/telemetry") {
2144
2144
  logger.warn(`Slow module \`${uniqueKey || "<no name>"}\` took \`${setupTime}ms\` to setup.`);
2145
2145
  } else if (nuxt.options.debug) {
2146
2146
  logger.info(`Module \`${uniqueKey || "<no name>"}\` took \`${setupTime}ms\` to setup.`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/kit",
3
- "version": "3.6.0",
3
+ "version": "3.6.2",
4
4
  "repository": "nuxt/nuxt",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,12 +18,12 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "c12": "^1.4.2",
21
- "consola": "^3.1.0",
21
+ "consola": "^3.2.2",
22
22
  "defu": "^6.1.2",
23
- "globby": "^13.2.0",
23
+ "globby": "^13.2.1",
24
24
  "hash-sum": "^2.0.0",
25
25
  "ignore": "^5.2.4",
26
- "jiti": "^1.18.2",
26
+ "jiti": "^1.19.1",
27
27
  "knitwork": "^1.0.0",
28
28
  "mlly": "^1.4.0",
29
29
  "pathe": "^1.1.1",
@@ -31,20 +31,20 @@
31
31
  "scule": "^1.0.0",
32
32
  "semver": "^7.5.3",
33
33
  "unctx": "^2.3.1",
34
- "unimport": "^3.0.8",
34
+ "unimport": "^3.0.14",
35
35
  "untyped": "^1.3.2",
36
- "@nuxt/schema": "3.6.0"
36
+ "@nuxt/schema": "3.6.2"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/hash-sum": "1.0.0",
40
40
  "@types/lodash-es": "4.17.7",
41
41
  "@types/semver": "7.5.0",
42
42
  "lodash-es": "4.17.21",
43
- "nitropack": "2.5.1",
43
+ "nitropack": "2.5.2",
44
44
  "unbuild": "latest",
45
45
  "vite": "4.3.9",
46
- "vitest": "0.32.2",
47
- "webpack": "5.88.0"
46
+ "vitest": "0.32.4",
47
+ "webpack": "5.88.1"
48
48
  },
49
49
  "engines": {
50
50
  "node": "^14.18.0 || >=16.10.0"