@nuxt/vite-builder-nightly 4.0.0-28810726.ca65f150 → 4.0.0-28811461.cfdc0289

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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -1
  2. package/package.json +4 -4
package/dist/index.mjs CHANGED
@@ -21,6 +21,7 @@ import { ViteNodeServer } from 'vite-node/server';
21
21
  import { normalizeViteManifest } from 'vue-bundle-renderer';
22
22
  import { ExternalsDefaults, isExternal } from 'externality';
23
23
  import escapeRE from 'escape-string-regexp';
24
+ import { colorize } from 'consola/utils';
24
25
  import { hasTTY, isCI } from 'std-env';
25
26
  import clear from 'clear';
26
27
  import { createUnplugin } from 'unplugin';
@@ -509,7 +510,7 @@ function createViteLogger(config) {
509
510
  }
510
511
  const prevLevel = logger.level;
511
512
  logger.level = logLevelMapReverse[config.logLevel || "info"];
512
- logger[type](msg + (sameAsLast ? ` (x${duplicateCount + 1})` : ""));
513
+ logger[type](msg + (sameAsLast ? colorize("dim", ` (x${duplicateCount + 1})`) : ""));
513
514
  logger.level = prevLevel;
514
515
  }
515
516
  const warnedMessages = /* @__PURE__ */ new Set();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/vite-builder-nightly",
3
- "version": "4.0.0-28810726.ca65f150",
3
+ "version": "4.0.0-28811461.cfdc0289",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",
@@ -21,15 +21,15 @@
21
21
  "dist"
22
22
  ],
23
23
  "devDependencies": {
24
- "@nuxt/schema": "npm:@nuxt/schema-nightly@4.0.0-28810726.ca65f150",
24
+ "@nuxt/schema": "npm:@nuxt/schema-nightly@4.0.0-28811461.cfdc0289",
25
25
  "@types/clear": "0.1.4",
26
26
  "@types/estree": "1.0.6",
27
27
  "rollup": "4.24.0",
28
28
  "unbuild": "3.0.0-rc.11",
29
- "vue": "3.5.11"
29
+ "vue": "3.5.12"
30
30
  },
31
31
  "dependencies": {
32
- "@nuxt/kit": "npm:@nuxt/kit-nightly@4.0.0-28810726.ca65f150",
32
+ "@nuxt/kit": "npm:@nuxt/kit-nightly@4.0.0-28811461.cfdc0289",
33
33
  "@rollup/plugin-replace": "^6.0.1",
34
34
  "@vitejs/plugin-vue": "^5.1.4",
35
35
  "@vitejs/plugin-vue-jsx": "^4.0.1",