@nx/vue 17.0.0-beta.6 → 17.0.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.0.0-beta.6",
3
+ "version": "17.0.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 Jest, 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,12 +30,12 @@
30
30
  "dependencies": {
31
31
  "minimatch": "3.0.5",
32
32
  "tslib": "^2.3.0",
33
- "@nx/devkit": "17.0.0-beta.6",
34
- "@nx/jest": "17.0.0-beta.6",
35
- "@nx/js": "17.0.0-beta.6",
36
- "@nx/linter": "17.0.0-beta.6",
37
- "@nx/vite": "17.0.0-beta.6",
38
- "@nx/web": "17.0.0-beta.6",
33
+ "@nx/devkit": "17.0.0-beta.8",
34
+ "@nx/jest": "17.0.0-beta.8",
35
+ "@nx/js": "17.0.0-beta.8",
36
+ "@nx/eslint": "17.0.0-beta.8",
37
+ "@nx/vite": "17.0.0-beta.8",
38
+ "@nx/web": "17.0.0-beta.8",
39
39
  "@phenomnomnominal/tsquery": "~5.0.1"
40
40
  },
41
41
  "publishConfig": {
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.applicationGenerator = void 0;
4
4
  const devkit_1 = require("@nx/devkit");
5
- const linter_1 = require("@nx/linter");
5
+ const eslint_1 = require("@nx/eslint");
6
6
  const normalize_options_1 = require("./lib/normalize-options");
7
7
  const init_1 = require("../init/init");
8
8
  const add_linting_1 = require("../../utils/add-linting");
@@ -29,7 +29,7 @@ async function applicationGenerator(tree, _options) {
29
29
  tasks.push(await (0, add_linting_1.addLinting)(tree, {
30
30
  name: options.projectName,
31
31
  projectRoot: options.appProjectRoot,
32
- linter: options.linter ?? linter_1.Linter.EsLint,
32
+ linter: options.linter ?? eslint_1.Linter.EsLint,
33
33
  unitTestRunner: options.unitTestRunner,
34
34
  skipPackageJson: options.skipPackageJson,
35
35
  setParserOptionsProject: options.setParserOptionsProject,
@@ -1,5 +1,5 @@
1
1
  import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
2
- import type { Linter } from '@nx/linter';
2
+ import type { Linter } from '@nx/eslint';
3
3
 
4
4
  export interface Schema {
5
5
  name: string;
@@ -1,5 +1,5 @@
1
1
  import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
2
- import type { Linter } from '@nx/linter';
2
+ import type { Linter } from '@nx/eslint';
3
3
  import type { SupportedStyles } from '../../../typings/style';
4
4
 
5
5
  export interface Schema {
@@ -1,4 +1,4 @@
1
- import { Linter } from '@nx/linter';
1
+ import { Linter } from '@nx/eslint';
2
2
 
3
3
  export interface StorybookConfigureSchema {
4
4
  name: string;
@@ -1,5 +1,5 @@
1
1
  import { Tree } from 'nx/src/generators/tree';
2
- import { Linter } from '@nx/linter';
2
+ import { Linter } from '@nx/eslint';
3
3
  export declare function addLinting(host: Tree, options: {
4
4
  linter: Linter;
5
5
  name: string;
@@ -1,15 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.editEslintConfigFiles = exports.addLinting = void 0;
4
- const linter_1 = require("@nx/linter");
4
+ const eslint_1 = require("@nx/eslint");
5
5
  const path_1 = require("nx/src/utils/path");
6
6
  const devkit_1 = require("@nx/devkit");
7
7
  const lint_1 = require("./lint");
8
- const eslint_file_1 = require("@nx/linter/src/generators/utils/eslint-file");
9
- const lint_project_1 = require("@nx/linter/src/generators/lint-project/lint-project");
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
10
  async function addLinting(host, options, projectType) {
11
- if (options.linter === linter_1.Linter.EsLint) {
12
- const lintTask = await (0, linter_1.lintProjectGenerator)(host, {
11
+ if (options.linter === eslint_1.Linter.EsLint) {
12
+ const lintTask = await (0, eslint_1.lintProjectGenerator)(host, {
13
13
  linter: options.linter,
14
14
  project: options.name,
15
15
  tsConfigPaths: [
@@ -2,12 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.createLib = exports.createApp = void 0;
4
4
  const devkit_1 = require("@nx/devkit");
5
- const linter_1 = require("@nx/linter");
5
+ const eslint_1 = require("@nx/eslint");
6
6
  const application_1 = require("../generators/application/application");
7
7
  async function createApp(tree, appName) {
8
8
  await (0, application_1.default)(tree, {
9
9
  e2eTestRunner: 'none',
10
- linter: linter_1.Linter.EsLint,
10
+ linter: eslint_1.Linter.EsLint,
11
11
  skipFormat: true,
12
12
  style: 'css',
13
13
  unitTestRunner: 'none',