Skip to content

Commit

Permalink
build: fix missing prebuid command for website
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Jun 15, 2023
1 parent 7d3dd84 commit c15d926
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions next.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ module.exports = {
// I have already run lint before this step...
ignoreDuringBuilds: true,
},
typescript: {
// I have already typecheck before this step...
ignoreBuildErrors: true,
},
};
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"license": "MIT",
"scripts": {
"prepare": "husky install",
"prebuild": "npm-run-all -p lint typecheck api-docs create-env",
"cli": "ts-node -P tsconfig.node.json --swc",
"create-env": "pnpm run cli scripts/createEnv.ts",
"format": "prettier --write \"**/*.{ts,tsx,scss,js,jsx,md,yml,json}\"",
Expand All @@ -20,7 +19,8 @@
"test-cy": "cypress open",
"dev": "next dev",
"start": "next start",
"build": "next build"
"build-website": "next build",
"build": "npm-run-all lint typecheck api-docs create-env build-website"
},
"engines": {
"pnpm": ">=8"
Expand Down

1 comment on commit c15d926

@vercel
Copy link

@vercel vercel bot commented on c15d926 Jun 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.