Skip to content
Merged

Fixes #974

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
*/node_modules
**/node_modules
*/build
docs/.docusaurus
.vscode
Expand Down
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,16 @@ WORKDIR /app

COPY package*.json ./
COPY docs/package*.json docs/
COPY storybook/package*.json storybook/
COPY server/package*.json server/

COPY storybook/package*.json storybook/
COPY storybook/preact/package*.json storybook/preact/
COPY storybook/react/package*.json storybook/react/
COPY storybook/solid/package*.json storybook/solid/
COPY storybook/svelte/package*.json storybook/svelte/
COPY storybook/vue/package*.json storybook/vue/
COPY storybook/web-components/package*.json storybook/web-components/

RUN npm ci

COPY . .
Expand Down
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export default [
'**/.storybook',
'docs/docs/api/assets',
'functions/vendors',
'storybook/**/src/livecodes*.ts',
],
},
...fixupConfigRules(
Expand Down
Loading