Skip to content
Merged
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
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,19 @@
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"preview": "vite preview",
"test": "vitest run --project=unit",
"test": "turbo run test:run --",
"test:run": "vitest run --project=unit",
"test:storybook": "vitest run --project=storybook",
"test:all": "vitest run",
"test:coverage": "vitest run --project=unit --coverage",
"test:ui": "vitest run --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --build --noEmit",
"typecheck": "turbo run typecheck:run --",
"typecheck:run": "tsc --build --noEmit",
"e2e": "bun scripts/e2e.ts",
"e2e:all": "playwright test",
"e2e:all": "turbo run e2e:run --",
"e2e:run": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed",
"e2e:update": "playwright test --update-snapshots",
Expand All @@ -35,14 +38,11 @@
"docs:preview": "vitepress preview docs",
"gen:stable": "bun scripts/gen-stable.ts",
"i18n:extract": "bun scripts/i18n-extract.ts",
"i18n:check": "bun scripts/i18n-check.ts",
"i18n:check": "turbo run i18n:run --",
"i18n:run": "bun scripts/i18n-check.ts",
"i18n:validate": "bun scripts/i18n-validate.ts",
"agent": "bun scripts/agent-readme.ts",
"turbo:test": "turbo run test",
"turbo:typecheck": "turbo run typecheck",
"turbo:i18n": "turbo run i18n:check",
"turbo:e2e": "turbo run e2e:all",
"turbo:check": "turbo run typecheck test i18n:check"
"check": "turbo run typecheck:run test:run i18n:run"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default defineConfig({
workers: process.env.CI ? 1 : undefined,

reporter: [
['html', { outputFolder: './e2e/report' }],
['html', { outputFolder: './e2e/report', open: 'never' }],
['list'],
],

Expand Down
14 changes: 7 additions & 7 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"typecheck": {
"typecheck:run": {
"dependsOn": [],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "tsconfig*.json"],
"outputs": [],
"cache": true
},
"test": {
"test:run": {
"dependsOn": [],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "vitest.config.ts"],
"outputs": ["coverage/**"],
"cache": true
},
"i18n:check": {
"i18n:run": {
"dependsOn": [],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "src/i18n/**/*.json", "scripts/i18n-check.ts"],
"outputs": [],
"cache": true
},
"e2e:all": {
"e2e:run": {
"dependsOn": [],
"inputs": ["src/**", "e2e/**", "playwright.config.ts"],
"outputs": ["e2e/report/**", "e2e/test-results/**"],
"cache": true
},
"build": {
"dependsOn": ["typecheck"],
"dependsOn": ["typecheck:run"],
"inputs": ["src/**", "index.html", "vite.config.ts", "tsconfig*.json"],
"outputs": ["dist/**"],
"cache": true
},
"build:web": {
"dependsOn": ["typecheck"],
"dependsOn": ["typecheck:run"],
"inputs": ["src/**", "index.html", "vite.config.ts", "tsconfig*.json"],
"outputs": ["dist-web/**"],
"cache": true
},
"build:dweb": {
"dependsOn": ["typecheck"],
"dependsOn": ["typecheck:run"],
"inputs": ["src/**", "index.html", "vite.config.ts", "tsconfig*.json"],
"outputs": ["dist-dweb/**"],
"cache": true
Expand Down