@nx/vue 22.4.0-beta.1 → 22.4.0-beta.3

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/generators.json CHANGED
@@ -32,7 +32,8 @@
32
32
  "setup-tailwind": {
33
33
  "factory": "./src/generators/setup-tailwind/setup-tailwind",
34
34
  "schema": "./src/generators/setup-tailwind/schema.json",
35
- "description": "Set up Tailwind configuration for a project."
35
+ "description": "Set up Tailwind configuration for a project.",
36
+ "x-deprecated": "Generating Tailwind configuration is no longer maintained. This generator will be removed in Nx 23."
36
37
  },
37
38
  "storybook-configuration": {
38
39
  "factory": "./src/generators/storybook-configuration/configuration#storybookConfigurationGeneratorInternal",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/vue",
3
- "version": "22.4.0-beta.1",
3
+ "version": "22.4.0-beta.3",
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, Playwright, 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": {
@@ -29,18 +29,18 @@
29
29
  "migrations": "./migrations.json"
30
30
  },
31
31
  "dependencies": {
32
- "@nx/devkit": "22.4.0-beta.1",
33
- "@nx/eslint": "22.4.0-beta.1",
34
- "@nx/js": "22.4.0-beta.1",
35
- "@nx/vite": "22.4.0-beta.1",
36
- "@nx/vitest": "22.4.0-beta.1",
37
- "@nx/web": "22.4.0-beta.1",
32
+ "@nx/devkit": "22.4.0-beta.3",
33
+ "@nx/eslint": "22.4.0-beta.3",
34
+ "@nx/js": "22.4.0-beta.3",
35
+ "@nx/vite": "22.4.0-beta.3",
36
+ "@nx/vitest": "22.4.0-beta.3",
37
+ "@nx/web": "22.4.0-beta.3",
38
38
  "picomatch": "4.0.2",
39
39
  "semver": "^7.6.3",
40
40
  "tslib": "^2.3.0"
41
41
  },
42
42
  "devDependencies": {
43
- "nx": "22.4.0-beta.1"
43
+ "nx": "22.4.0-beta.3"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
@@ -1 +1 @@
1
- {"version":3,"file":"setup-tailwind.d.ts","sourceRoot":"","sources":["../../../../../../packages/vue/src/generators/setup-tailwind/setup-tailwind.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAa1D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAIrD,wBAAsB,sBAAsB,CAC1C,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,oBAAoB,GAC5B,OAAO,CAAC,IAAI,GAAG,iBAAiB,CAAC,CAuBnC;AAED,eAAe,sBAAsB,CAAC"}
1
+ {"version":3,"file":"setup-tailwind.d.ts","sourceRoot":"","sources":["../../../../../../packages/vue/src/generators/setup-tailwind/setup-tailwind.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAc1D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAIrD,wBAAsB,sBAAsB,CAC1C,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,oBAAoB,GAC5B,OAAO,CAAC,IAAI,GAAG,iBAAiB,CAAC,CA2BnC;AAED,eAAe,sBAAsB,CAAC"}
@@ -6,6 +6,7 @@ const versions_1 = require("../../utils/versions");
6
6
  const add_tailwind_style_imports_1 = require("./lib/add-tailwind-style-imports");
7
7
  const path_1 = require("path");
8
8
  async function setupTailwindGenerator(tree, options) {
9
+ devkit_1.logger.warn(`The 'setup-tailwind' generator is deprecated. Generating Tailwind configuration is no longer maintained. This generator will be removed in Nx 23.`);
9
10
  let installTask = undefined;
10
11
  const project = (0, devkit_1.readProjectConfiguration)(tree, options.project);
11
12
  (0, devkit_1.generateFiles)(tree, (0, path_1.join)(__dirname, './files'), project.root, {});