Skip to content

Commit

Permalink
fix: don't run astro check when build
Browse files Browse the repository at this point in the history
  • Loading branch information
r4ai committed Apr 23, 2024
1 parent cdb7579 commit 19b58a2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
Binary file modified bun.lockb
Binary file not shown.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
},
"packageManager": "[email protected]",
"dependencies": {
"@astrojs/mdx": "2.3.1",
"@astrojs/react": "3.3.0",
"@radix-ui/react-icons": "^1.3.0",
"astro": "4.6.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.372.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/check": "^0.5.9",
"@astrojs/check": "^0.5.10",
"@astrojs/mdx": "^2.2.2",
"@astrojs/react": "^3.1.0",
"@astrojs/tailwind": "^5.1.0",
Expand Down
13 changes: 10 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": ["dist/**"]
"outputs": ["dist/**"],
"dependsOn": ["^build"]
},
"test": {},
"test:ci": {}
"test": {
"cache": false,
"dependsOn": ["build"]
},
"test:ci": {
"cache": false,
"dependsOn": ["build"]
}
}
}

0 comments on commit 19b58a2

Please sign in to comment.