@nuxt/webpack-builder-nightly 5.0.0-29610254.a9266e21 → 5.0.0-29611511.f7bd3213

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 -3
  2. package/package.json +5 -6
package/dist/index.mjs CHANGED
@@ -20,7 +20,6 @@ import { defineEnv } from "unenv";
20
20
  import TimeFixPlugin from "time-fix-plugin";
21
21
  import FriendlyErrorsWebpackPlugin from "@nuxt/friendly-errors-webpack-plugin";
22
22
  import escapeRegExp from "escape-string-regexp";
23
- import { isTest } from "std-env";
24
23
  import { EsbuildPlugin } from "esbuild-loader";
25
24
  import CssMinimizerPlugin from "css-minimizer-webpack-plugin";
26
25
  import createResolver from "postcss-import-resolver";
@@ -756,12 +755,12 @@ function getEnv(ctx) {
756
755
  "__NUXT_ASYNC_CONTEXT__": ctx.options.experimental.asyncContext,
757
756
  "process.env.VUE_ENV": JSON.stringify(ctx.name),
758
757
  "process.dev": ctx.options.dev,
759
- "process.test": isTest,
758
+ "process.test": ctx.nuxt.options.test,
760
759
  "process.browser": ctx.isClient,
761
760
  "process.client": ctx.isClient,
762
761
  "process.server": ctx.isServer,
763
762
  "import.meta.dev": ctx.options.dev,
764
- "import.meta.test": isTest,
763
+ "import.meta.test": ctx.nuxt.options.test,
765
764
  "import.meta.browser": ctx.isClient,
766
765
  "import.meta.client": ctx.isClient,
767
766
  "import.meta.server": ctx.isServer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/webpack-builder-nightly",
3
- "version": "5.0.0-29610254.a9266e21",
3
+ "version": "5.0.0-29611511.f7bd3213",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",
@@ -25,7 +25,7 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "@nuxt/friendly-errors-webpack-plugin": "^2.6.0",
28
- "@nuxt/kit": "npm:@nuxt/kit-nightly@5.0.0-29610254.a9266e21",
28
+ "@nuxt/kit": "npm:@nuxt/kit-nightly@5.0.0-29611511.f7bd3213",
29
29
  "@vue/compiler-sfc": "3.5.30",
30
30
  "autoprefixer": "^10.4.27",
31
31
  "css-loader": "^7.1.4",
@@ -53,7 +53,6 @@
53
53
  "postcss-url": "^10.1.3",
54
54
  "pug-plain-loader": "^1.1.0",
55
55
  "seroval": "^1.5.1",
56
- "std-env": "^4.0.0",
57
56
  "time-fix-plugin": "^2.0.7",
58
57
  "tinyglobby": "^0.2.15",
59
58
  "ufo": "^1.6.3",
@@ -62,14 +61,14 @@
62
61
  "url-loader": "^4.1.1",
63
62
  "vue-bundle-renderer": "^2.2.0",
64
63
  "vue-loader": "^17.4.2",
65
- "webpack": "^5.106.1",
64
+ "webpack": "^5.106.2",
66
65
  "webpack-bundle-analyzer": "^5.3.0",
67
66
  "webpack-dev-middleware": "^8.0.3",
68
67
  "webpack-hot-middleware": "^2.26.1",
69
68
  "webpackbar": "^7.0.0"
70
69
  },
71
70
  "devDependencies": {
72
- "@nuxt/schema": "npm:@nuxt/schema-nightly@5.0.0-29610254.a9266e21",
71
+ "@nuxt/schema": "npm:@nuxt/schema-nightly@5.0.0-29611511.f7bd3213",
73
72
  "@rspack/core": "1.7.8",
74
73
  "@types/webpack-bundle-analyzer": "4.7.0",
75
74
  "@types/webpack-hot-middleware": "2.25.12",
@@ -80,7 +79,7 @@
80
79
  "vue": "3.5.30"
81
80
  },
82
81
  "peerDependencies": {
83
- "nuxt": "npm:nuxt-nightly@5.0.0-29610254.a9266e21",
82
+ "nuxt": "npm:nuxt-nightly@5.0.0-29611511.f7bd3213",
84
83
  "vue": "^3.3.4"
85
84
  },
86
85
  "engines": {