@nx/vue 17.2.0-beta.6 → 17.2.0-beta.8

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/vue",
3
- "version": "17.2.0-beta.6",
3
+ "version": "17.2.0-beta.8",
4
4
  "private": false,
5
5
  "description": "The Vue plugin for Nx contains executors and generators for managing Vue applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -30,11 +30,11 @@
30
30
  "dependencies": {
31
31
  "minimatch": "3.0.5",
32
32
  "tslib": "^2.3.0",
33
- "@nx/devkit": "17.2.0-beta.6",
34
- "@nx/js": "17.2.0-beta.6",
35
- "@nx/eslint": "17.2.0-beta.6",
36
- "@nx/vite": "17.2.0-beta.6",
37
- "@nx/web": "17.2.0-beta.6"
33
+ "@nx/devkit": "17.2.0-beta.8",
34
+ "@nx/js": "17.2.0-beta.8",
35
+ "@nx/eslint": "17.2.0-beta.8",
36
+ "@nx/vite": "17.2.0-beta.8",
37
+ "@nx/web": "17.2.0-beta.8"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
@@ -27,7 +27,7 @@ async function addE2e(tree, options) {
27
27
  bundler: 'vite',
28
28
  skipFormat: true,
29
29
  devServerTarget: `${options.projectName}:serve`,
30
- baseUrl: 'https://localhost:4200',
30
+ baseUrl: 'http://localhost:4200',
31
31
  jsx: true,
32
32
  });
33
33
  }
@@ -6,7 +6,6 @@ const path_1 = require("nx/src/utils/path");
6
6
  const devkit_1 = require("@nx/devkit");
7
7
  const lint_1 = require("./lint");
8
8
  const eslint_file_1 = require("@nx/eslint/src/generators/utils/eslint-file");
9
- const lint_project_1 = require("@nx/eslint/src/generators/lint-project/lint-project");
10
9
  async function addLinting(host, options, projectType) {
11
10
  if (options.linter === eslint_1.Linter.EsLint) {
12
11
  const lintTask = await (0, eslint_1.lintProjectGenerator)(host, {
@@ -16,9 +15,6 @@ async function addLinting(host, options, projectType) {
16
15
  (0, path_1.joinPathFragments)(options.projectRoot, `tsconfig.${projectType}.json`),
17
16
  ],
18
17
  unitTestRunner: options.unitTestRunner,
19
- eslintFilePatterns: [
20
- (0, lint_project_1.mapLintPattern)(options.projectRoot, '{ts,tsx,js,jsx,vue}', options.rootProject),
21
- ],
22
18
  skipFormat: true,
23
19
  setParserOptionsProject: options.setParserOptionsProject,
24
20
  rootProject: options.rootProject,