@nx/web 23.0.0-beta.16 → 23.0.0-beta.18

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": "23.0.0-beta.16",
3
+ "version": "23.0.0-beta.18",
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": {
@@ -36,20 +36,20 @@
36
36
  "http-server": "^14.1.0",
37
37
  "picocolors": "^1.1.0",
38
38
  "tslib": "^2.3.0",
39
- "@nx/devkit": "23.0.0-beta.16",
40
- "@nx/js": "23.0.0-beta.16"
39
+ "@nx/devkit": "23.0.0-beta.18",
40
+ "@nx/js": "23.0.0-beta.18"
41
41
  },
42
42
  "devDependencies": {
43
- "nx": "23.0.0-beta.16",
44
- "@nx/vitest": "23.0.0-beta.16"
43
+ "nx": "23.0.0-beta.18",
44
+ "@nx/vitest": "23.0.0-beta.18"
45
45
  },
46
46
  "peerDependencies": {
47
- "@nx/cypress": "23.0.0-beta.16",
48
- "@nx/eslint": "23.0.0-beta.16",
49
- "@nx/jest": "23.0.0-beta.16",
50
- "@nx/playwright": "23.0.0-beta.16",
51
- "@nx/vite": "23.0.0-beta.16",
52
- "@nx/webpack": "23.0.0-beta.16"
47
+ "@nx/cypress": "23.0.0-beta.18",
48
+ "@nx/eslint": "23.0.0-beta.18",
49
+ "@nx/jest": "23.0.0-beta.18",
50
+ "@nx/playwright": "23.0.0-beta.18",
51
+ "@nx/vite": "23.0.0-beta.18",
52
+ "@nx/webpack": "23.0.0-beta.18"
53
53
  },
54
54
  "peerDependenciesMeta": {
55
55
  "@nx/cypress": {
@@ -1 +1 @@
1
- {"version":3,"file":"application.d.ts","sourceRoot":"","sources":["../../../../../../packages/web/src/generators/application/application.ts"],"names":[],"mappings":"AAOA,OAAO,EAML,iBAAiB,EASjB,IAAI,EAKL,MAAM,YAAY,CAAC;AAoBpB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAkPlC,wBAAsB,oBAAoB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BAKpE;AAED,wBAAsB,4BAA4B,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BAqW5E;AA0DD,eAAe,oBAAoB,CAAC"}
1
+ {"version":3,"file":"application.d.ts","sourceRoot":"","sources":["../../../../../../packages/web/src/generators/application/application.ts"],"names":[],"mappings":"AAOA,OAAO,EAML,iBAAiB,EASjB,IAAI,EAKL,MAAM,YAAY,CAAC;AAoBpB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAkPlC,wBAAsB,oBAAoB,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BAKpE;AAED,wBAAsB,4BAA4B,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,8BAmW5E;AA0DD,eAAe,oBAAoB,CAAC"}
@@ -229,7 +229,7 @@ async function applicationGeneratorInternal(host, schema) {
229
229
  tasks.push(lintTask);
230
230
  // Add out-tsc ignore pattern when using TS solution setup
231
231
  if (options.isUsingTsSolutionConfig) {
232
- const { addIgnoresToLintConfig } = await Promise.resolve().then(() => tslib_1.__importStar(require('@nx/eslint/src/generators/utils/eslint-file')));
232
+ const { addIgnoresToLintConfig } = await Promise.resolve().then(() => tslib_1.__importStar(require('@nx/eslint/internal')));
233
233
  addIgnoresToLintConfig(host, options.appProjectRoot, ['**/out-tsc']);
234
234
  }
235
235
  }