@nx/web 22.1.0-beta.1 → 22.1.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/web",
3
- "version": "22.1.0-beta.1",
3
+ "version": "22.1.0-beta.2",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Web Components contains generators for managing Web Component applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Playwright, Cypress, and Storybook.\n\n- Scaffolding for creating buildable libraries that can be published to npm.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -35,11 +35,11 @@
35
35
  "http-server": "^14.1.0",
36
36
  "picocolors": "^1.1.0",
37
37
  "tslib": "^2.3.0",
38
- "@nx/devkit": "22.1.0-beta.1",
39
- "@nx/js": "22.1.0-beta.1"
38
+ "@nx/devkit": "22.1.0-beta.2",
39
+ "@nx/js": "22.1.0-beta.2"
40
40
  },
41
41
  "devDependencies": {
42
- "nx": "22.1.0-beta.1"
42
+ "nx": "22.1.0-beta.2"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
@@ -239,7 +239,7 @@ async function applicationGeneratorInternal(host, schema) {
239
239
  if (options.bundler === 'vite') {
240
240
  const { viteConfigurationGenerator, createOrEditViteConfig } = (0, devkit_1.ensurePackage)('@nx/vite', versions_2.nxVersion);
241
241
  // We recommend users use `import.meta.env.MODE` and other variables in their code to differentiate between production and development.
242
- // See: https://vitejs.dev/guide/env-and-mode.html
242
+ // See: https://vite.dev/guide/env-and-mode.html
243
243
  if (host.exists((0, devkit_1.joinPathFragments)(options.appProjectRoot, 'src/environments'))) {
244
244
  host.delete((0, devkit_1.joinPathFragments)(options.appProjectRoot, 'src/environments'));
245
245
  }