Skip to content

Commit 2dd7bf6

Browse files
authored
build(storybook): Oryx cannot build because of missing imports (#1100)
* build(storybook): remove import for uui-icon-registry-essential * build: do not bootstrap twice * Revert "build(storybook): remove import for uui-icon-registry-essential" This reverts commit 24e1eee. * build(deps-dev): bump storybook and run migration * build(deps-dev): bump vite and removed unused package * build(debug): adds debug steps to github workflow * build(debug): install dependencies manually * build: install dependencies manually
1 parent 3dd62a7 commit 2dd7bf6

File tree

4 files changed

+166
-208
lines changed

4 files changed

+166
-208
lines changed

.github/workflows/azure-static-web-apps-delightful-beach-055ecb503.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,16 @@ jobs:
2222
name: Build and Deploy Job
2323
steps:
2424
- uses: actions/checkout@v4
25+
26+
- name: Use Node.js
27+
uses: actions/setup-node@v4
2528
with:
26-
submodules: true
29+
node-version-file: .nvmrc
30+
check-latest: true
31+
cache: 'npm'
32+
33+
- name: Install Dependencies
34+
run: npm install
2735

2836
- name: Build And Deploy
2937
id: builddeploy

.storybook/main.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ const config: StorybookConfig = {
3333
options: {},
3434
},
3535

36-
docs: {
37-
autodocs: true,
38-
},
36+
docs: {},
3937
};
4038
export default config;

0 commit comments

Comments
 (0)