@nx/storybook 19.8.7 → 19.8.9
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 +6 -6
- package/src/plugins/plugin.js +3 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/storybook",
|
|
3
|
-
"version": "19.8.
|
|
3
|
+
"version": "19.8.9",
|
|
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": {
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"migrations": "./migrations.json"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@nx/devkit": "19.8.
|
|
36
|
+
"@nx/devkit": "19.8.9",
|
|
37
37
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
38
38
|
"semver": "^7.5.3",
|
|
39
39
|
"tslib": "^2.3.0",
|
|
40
|
-
"@nx/cypress": "19.8.
|
|
41
|
-
"@nx/js": "19.8.
|
|
42
|
-
"@nx/eslint": "19.8.
|
|
43
|
-
"@nrwl/storybook": "19.8.
|
|
40
|
+
"@nx/cypress": "19.8.9",
|
|
41
|
+
"@nx/js": "19.8.9",
|
|
42
|
+
"@nx/eslint": "19.8.9",
|
|
43
|
+
"@nrwl/storybook": "19.8.9"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -101,7 +101,7 @@ function buildTarget(namedInputs, outputs, projectRoot, frameworkIsAngular, proj
|
|
|
101
101
|
isStorybookTestRunnerInstalled()
|
|
102
102
|
? '@storybook/test-runner'
|
|
103
103
|
: undefined,
|
|
104
|
-
],
|
|
104
|
+
].filter(Boolean),
|
|
105
105
|
},
|
|
106
106
|
],
|
|
107
107
|
};
|
|
@@ -122,7 +122,7 @@ function buildTarget(namedInputs, outputs, projectRoot, frameworkIsAngular, proj
|
|
|
122
122
|
isStorybookTestRunnerInstalled()
|
|
123
123
|
? '@storybook/test-runner'
|
|
124
124
|
: undefined,
|
|
125
|
-
],
|
|
125
|
+
].filter(Boolean),
|
|
126
126
|
},
|
|
127
127
|
],
|
|
128
128
|
};
|
|
@@ -153,12 +153,7 @@ function testTarget(projectRoot) {
|
|
|
153
153
|
options: { cwd: projectRoot },
|
|
154
154
|
inputs: [
|
|
155
155
|
{
|
|
156
|
-
externalDependencies: [
|
|
157
|
-
'storybook',
|
|
158
|
-
isStorybookTestRunnerInstalled()
|
|
159
|
-
? '@storybook/test-runner'
|
|
160
|
-
: undefined,
|
|
161
|
-
],
|
|
156
|
+
externalDependencies: ['storybook', '@storybook/test-runner'],
|
|
162
157
|
},
|
|
163
158
|
],
|
|
164
159
|
};
|