@nx/vue 18.0.4 → 18.1.0-beta.1
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": "18.0.
|
|
3
|
+
"version": "18.1.0-beta.1",
|
|
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": "9.0.3",
|
|
32
32
|
"tslib": "^2.3.0",
|
|
33
|
-
"@nx/devkit": "18.0.
|
|
34
|
-
"@nx/js": "18.0.
|
|
35
|
-
"@nx/eslint": "18.0.
|
|
36
|
-
"@nx/vite": "18.0.
|
|
37
|
-
"@nx/web": "18.0.
|
|
33
|
+
"@nx/devkit": "18.1.0-beta.1",
|
|
34
|
+
"@nx/js": "18.1.0-beta.1",
|
|
35
|
+
"@nx/eslint": "18.1.0-beta.1",
|
|
36
|
+
"@nx/vite": "18.1.0-beta.1",
|
|
37
|
+
"@nx/web": "18.1.0-beta.1"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
@@ -317,14 +317,13 @@ defineProps<{
|
|
|
317
317
|
You can activate distributed tasks executions and caching by
|
|
318
318
|
running:
|
|
319
319
|
</p>
|
|
320
|
-
<pre>nx connect
|
|
320
|
+
<pre>nx connect</pre>
|
|
321
321
|
<a
|
|
322
322
|
href="https://nx.app/?utm_source=nx-project"
|
|
323
323
|
target="_blank"
|
|
324
324
|
rel="noreferrer"
|
|
325
325
|
>
|
|
326
|
-
|
|
327
|
-
What is Nx Cloud?{' '}
|
|
326
|
+
What is Nx Cloud?
|
|
328
327
|
</a>
|
|
329
328
|
</div>
|
|
330
329
|
<a
|
|
@@ -17,6 +17,9 @@ const knownStylesheetLocations = [
|
|
|
17
17
|
'src/assets/styles.less',
|
|
18
18
|
];
|
|
19
19
|
function addTailwindStyleImports(tree, project, _options) {
|
|
20
|
+
if (_options.stylesheet) {
|
|
21
|
+
knownStylesheetLocations.push(_options.stylesheet);
|
|
22
|
+
}
|
|
20
23
|
const stylesPath = knownStylesheetLocations
|
|
21
24
|
.map((file) => (0, devkit_1.joinPathFragments)(project.root, file))
|
|
22
25
|
.find((file) => tree.exists(file));
|