@nx/storybook 18.0.2 → 18.0.4
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/storybook",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Storybook contains executors and generators for allowing your workspace to use the powerful Storybook integration testing & documenting capabilities.",
|
|
6
6
|
"repository": {
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"migrations": "./migrations.json"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@nx/devkit": "18.0.
|
|
33
|
+
"@nx/devkit": "18.0.4",
|
|
34
34
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
35
35
|
"semver": "^7.5.3",
|
|
36
36
|
"tslib": "^2.3.0",
|
|
37
|
-
"@nx/cypress": "18.0.
|
|
38
|
-
"@nx/js": "18.0.
|
|
39
|
-
"@nx/eslint": "18.0.
|
|
40
|
-
"@nrwl/storybook": "18.0.
|
|
37
|
+
"@nx/cypress": "18.0.4",
|
|
38
|
+
"@nx/js": "18.0.4",
|
|
39
|
+
"@nx/eslint": "18.0.4",
|
|
40
|
+
"@nrwl/storybook": "18.0.4"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
package/src/utils/utilities.js
CHANGED
|
@@ -106,11 +106,16 @@ function findStorybookAndBuildTargetsAndCompiler(targets) {
|
|
|
106
106
|
'@nrwl/esbuild:esbuild',
|
|
107
107
|
'@nrwl/next:build',
|
|
108
108
|
'@nxext/vite:build',
|
|
109
|
+
'@angular-devkit/build-angular:application',
|
|
109
110
|
'@angular-devkit/build-angular:browser',
|
|
111
|
+
'@angular-devkit/build-angular:browser-esbuild',
|
|
110
112
|
];
|
|
111
113
|
for (const target in targets) {
|
|
112
114
|
if (arrayOfBuilders.includes(targets[target].executor)) {
|
|
113
|
-
if (targets[target].executor === '@angular-devkit/build-angular:browser'
|
|
115
|
+
if (targets[target].executor === '@angular-devkit/build-angular:browser' ||
|
|
116
|
+
targets[target].executor ===
|
|
117
|
+
'@angular-devkit/build-angular:browser-esbuild' ||
|
|
118
|
+
targets[target].executor === '@angular-devkit/build-angular:application') {
|
|
114
119
|
/**
|
|
115
120
|
* Not looking for '@nx/angular:ng-packagr-lite' or any other
|
|
116
121
|
* @nx/angular:* executors.
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ export declare const tsNodeVersion = "10.9.1";
|
|
|
7
7
|
export declare const tsLibVersion = "^2.3.0";
|
|
8
8
|
export declare const storybookVersion = "^7.5.3";
|
|
9
9
|
export declare const reactVersion = "^18.2.0";
|
|
10
|
-
export declare const viteVersion = "
|
|
10
|
+
export declare const viteVersion = "~5.0.0";
|
|
11
11
|
export declare const coreJsVersion = "^3.6.5";
|
package/src/utils/versions.js
CHANGED