Skip to content

Commit 3e4fc3b

Browse files
authored
Alpha vite support (#434)
1 parent 69acc5e commit 3e4fc3b

File tree

239 files changed

+2811
-396
lines changed

Some content is hidden

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

239 files changed

+2811
-396
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"access": "public",
88
"baseBranch": "main",
99
"updateInternalDependencies": "patch",
10-
"ignore": ["benchmarks", "cross-file-tests", "docs", "next-yak-example"]
10+
"ignore": []
1111
}

.changeset/four-clocks-remain.md

Lines changed: 6 additions & 0 deletions

.github/workflows/autofix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ jobs:
5858
run: pnpm prettier
5959

6060
- name: Prettier Examples
61-
run: npx prettier --write "packages/example/app/**/*.{ts,tsx,js,jsx}"
61+
run: npx prettier --write "examples/**/*.{ts,tsx,js,jsx}"
6262

6363
- name: Benchmarks
64-
run: npx prettier --write "packages/benchmarks/**/*.{ts,tsx}" --ignore-path "packages/benchmarks/.prettierignore"
64+
run: npx prettier --write "benchmarks/**/*.{ts,tsx}" --ignore-path "benchmarks/.prettierignore"
6565

6666
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27

.github/workflows/codspeed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ jobs:
7373
run: pnpm run build
7474

7575
- name: Build benchmark suite
76-
run: cd packages/benchmarks && pnpm run codspeed
76+
run: cd benchmarks && pnpm run codspeed
7777

7878
- name: Run benchmarks
7979
uses: CodSpeedHQ/action@76578c2a7ddd928664caa737f0e962e3085d4e7c # v3
8080
with:
81-
working-directory: "packages/benchmarks"
81+
working-directory: "benchmarks"
8282
run: NODE_ENV=production node --enable-source-maps ./codspeed/dist/index.bench.mjs
8383
token: ${{ secrets.CODSPEED_TOKEN }}

.gitignore

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
.next
22
node_modules
3-
packages/docs/docs/dist
4-
packages/next-yak/dist
5-
packages/eslint-plugin-yak/dist
3+
**/docs/dist
4+
**/next-yak/dist
5+
**/eslint-plugin-yak/dist
6+
examples/**/dist
67
target
78
.vercel
8-
.swc
9+
.swc
10+
.tanstack

0 commit comments

Comments
 (0)