@nuxt/kit-nightly 4.3.0-29431313.dbcf87d4 → 4.3.0-29431381.f1713850

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 +3 -3
  2. package/package.json +4 -4
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { performance } from 'node:perf_hooks';
2
- import defu$1, { defu, createDefu } from 'defu';
2
+ import { defu, createDefu } from 'defu';
3
3
  import { applyDefaults } from 'untyped';
4
4
  import { consola } from 'consola';
5
5
  import { AsyncLocalStorage } from 'node:async_hooks';
@@ -888,7 +888,7 @@ async function loadNuxtConfig(opts) {
888
888
  onlyDirectories: true,
889
889
  cwd: opts.cwd || process.cwd()
890
890
  })).map((d) => withTrailingSlash$2(d)).sort((a, b) => b.localeCompare(a));
891
- opts.overrides = defu$1(opts.overrides, { _extends: localLayers });
891
+ opts.overrides = defu(opts.overrides, { _extends: localLayers });
892
892
  const { configFile, layers = [], cwd, config: nuxtConfig, meta } = await withDefineNuxtConfig(
893
893
  () => loadConfig({
894
894
  name: "nuxt",
@@ -1120,7 +1120,7 @@ function useRuntimeConfig() {
1120
1120
  }
1121
1121
  function updateRuntimeConfig(runtimeConfig) {
1122
1122
  const nuxt = useNuxt();
1123
- Object.assign(nuxt.options.nitro.runtimeConfig, defu$1(runtimeConfig, nuxt.options.nitro.runtimeConfig));
1123
+ Object.assign(nuxt.options.nitro.runtimeConfig, defu(runtimeConfig, nuxt.options.nitro.runtimeConfig));
1124
1124
  try {
1125
1125
  return useNitro().updateConfig({ runtimeConfig });
1126
1126
  } catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/kit-nightly",
3
- "version": "4.3.0-29431313.dbcf87d4",
3
+ "version": "4.3.0-29431381.f1713850",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",
@@ -45,14 +45,14 @@
45
45
  "untyped": "^2.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-29431313.dbcf87d4",
48
+ "@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-29431381.f1713850",
49
49
  "@rspack/core": "1.6.7",
50
50
  "@types/semver": "7.7.1",
51
51
  "hookable": "5.5.3",
52
52
  "nitropack": "2.12.9",
53
53
  "unbuild": "3.6.1",
54
- "unimport": "5.5.0",
55
- "vite": "7.2.7",
54
+ "unimport": "5.6.0",
55
+ "vite": "7.3.0",
56
56
  "vitest": "3.2.4",
57
57
  "webpack": "5.103.0"
58
58
  },