We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e0e9d commit 9e3c6f9Copy full SHA for 9e3c6f9
azure-pipelines.yml
@@ -15,21 +15,13 @@ steps:
15
- script: |
16
npm install
17
npm run build
18
- displayName: 'npm install and build'
+ npm run build-storybook
19
+ displayName: 'NPM install and build'
20
-- task: Npm@1
21
+- task: CopyFiles@2
22
+ displayName: Move storybook package json
23
inputs:
- command: 'install'
- customEndpoint: 'NPM'
24
-
25
26
- inputs:
27
- command: 'custom'
28
- customCommand: 'run build'
29
30
31
32
33
34
- customCommand: 'run build-storybook'
35
+ SourceFolder: '.storybook'
+ Contents: 'package.json'
+ TargetFolder: 'storybook-static'
+ OverWrite: true
0 commit comments