Skip to content

Commit a371541

Browse files
merge w/ main
2 parents a6ce9a7 + f925a01 commit a371541

File tree

129 files changed

+2153
-8843
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+2153
-8843
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
node_version:
77
description: Node Version
88
required: false
9-
default: '16'
9+
default: '18'
1010

1111
runs:
1212
using: composite
@@ -25,7 +25,7 @@ runs:
2525
- name: Setup pnpm
2626
uses: pnpm/[email protected]
2727
with:
28-
version: 7
28+
version: 8
2929

3030
- name: Use Node
3131
uses: actions/setup-node@v4

.github/actions/test/action.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ runs:
1414
using: composite
1515

1616
steps:
17-
# - name: Commitlint
18-
# shell: bash
19-
# run: npx --no-install commitlint --from=last-release
20-
2117
- name: Lint
2218
shell: bash
2319
run: npx nx run-many -t lint --exclude website # --base=last-release <- add that back after fix
@@ -26,10 +22,6 @@ runs:
2622
shell: bash
2723
run: npx nx run-many -t build --parallel=false --exclude website # --base=last-release <- add that back
2824

29-
# - name: Build storybook
30-
# shell: bash
31-
# run: npx nx build-storybook headless
32-
3325
- name: Test all except headless
3426
shell: bash
3527
run: npx nx run-many -t test # --base=last-release <- add that back
@@ -41,15 +33,6 @@ runs:
4133
with:
4234
command: 'pnpm test.headless.ci'
4335

44-
# - name: Publish to Chromatic
45-
# uses: chromaui/action@v1
46-
# # Chromatic GitHub Action options
47-
# with:
48-
# # 👇 Chromatic projectToken, refer to the manage page to obtain it.
49-
# projectToken: ${{ inputs.chromatic_token }}
50-
# storybookBuildDir: dist/storybook/headless
51-
# zip: true
52-
5336
# - name: Build
5437
# shell: bash
5538
# run: npx nx affected:build --base=last-release --exclude=website

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node_version: [16, 18, 20, 21]
14+
node_version: [18, 20, 21, 22]
1515

1616
steps:
1717
- uses: actions/checkout@v3

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node_version: [16, 18, 20, 21]
13+
node_version: [18, 20, 22]
1414

1515
steps:
1616
- name: Cancel Previous Runs

.storybook/main.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.

.storybook/package.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.storybook/tsconfig.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

apps/website/src/components/code-copy/code-copy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { PropsOf, component$, useSignal } from '@builder.io/qwik';
2-
import { Button } from '@qwik-ui/styled';
2+
import { Button } from '~/components/ui';
33
import { cn } from '@qwik-ui/utils';
44
import copy from 'clipboard-copy';
55

apps/website/src/components/component-status-badge/component-status-badge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { component$ } from '@builder.io/qwik';
2-
import { Badge } from '@qwik-ui/styled';
2+
import { Badge } from '~/components/ui';
33
import { ComponentStatus } from '~/_state/component-status.type';
44

55
export interface StatusBadgeProps {

apps/website/src/components/copy-css-config/copy-css-config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { component$, useSignal } from '@builder.io/qwik';
22
import { Modal } from '@qwik-ui/headless';
3-
import { Button } from '@qwik-ui/styled';
3+
import { Button } from '~/components/ui';
44
import { extractThemeCSS } from '@qwik-ui/utils';
55
import { LuX } from '@qwikest/icons/lucide';
66
import { useTheme } from 'qwik-themes';

0 commit comments

Comments
 (0)