Skip to content

Commit

Permalink
Fix API gen order
Browse files Browse the repository at this point in the history
  • Loading branch information
NotWoods committed Feb 4, 2024
1 parent 5cd78ea commit 21c43ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
20
1 change: 0 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
edge_functions = "packages/edge-functions/src/"
[build.environment]
NODE_ENV = "development"
NODE_VERSION = "20"
NPM_FLAGS="--prefix=/dev/null"

# Production context: all deploys from the Production branch set in your site’s
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ version: 5.0.0
scripts:
api: pnpm --filter api-gen run api:client
build: >-
pnpm --filter api-gen run api:client &&
pnpm --filter client run build &&
pnpm --filter client run build:ssr &&
pnpm --filter api-gen run api:client &&
pnpm --filter prerender run build &&
pnpm --filter client run workbox
clean: >-
del-cli "dist/**/*" "packages/**/*.js" "packages/**/*.d.ts"
"packages/**/*.map" "packages/**/*.tsbuildinfo"
"packages/**/*.map" "packages/**/*.tsbuildinfo" "packages/client/public/api/v1/**/*.json"
dev: pnpm --filter client run dev
format: prettier *.yaml *.cjs *.json .github/**/*.yml --write
tsc: tsc --build .
Expand Down
1 change: 1 addition & 0 deletions scripts/app.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node --version
npx pnpm recursive install --frozen-lockfile --store=node_modules/.pnpm-store || echo skiping pnpm install
npx pnpm run build || exit 1

0 comments on commit 21c43ff

Please sign in to comment.