Skip to content

Commit

Permalink
fix: package scripts (#3120)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fran McDade authored and Fran McDade committed Sep 10, 2024
1 parent 431a3e4 commit 2a5aab7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"build-dev:anvil-portal": "scripts/common-build.sh anvil-portal dev && next build && npm run postbuild",
"build-prod:anvil-portal": "scripts/common-build.sh anvil-portal prod && next build && npm run postbuild",
"start": "npx serve out",
"lint": "next/node_modules/.bin/next lint",
"check-format": "next/node_modules/.bin/prettier --check .",
"postbuild": "next/node_modules/.bin/next-sitemap --config ../next-sitemap.config.mjs",
"prepare": "cd && husky install next/.husky",
"lint": "node_modules/.bin/next lint",
"check-format": "node_modules/.bin/prettier --check .",
"postbuild": "node_modules/.bin/next-sitemap --config ./next-sitemap.config.mjs",
"prepare": "cd && husky install ./.husky",
"convert-cser-publications": "cd scripts && node convert-cser-publications.mjs",
"update-ingestion-chart": "cd scripts && node update-ingestion-chart.mjs",
"add-cser-materials": "next/node_modules/.bin/esrun ../scripts/add-cser-materials.ts"
"add-cser-materials": "node_modules/.bin/esrun ./scripts/add-cser-materials.ts"
},
"dependencies": {
"@databiosphere/findable-ui": "10.2.0",
Expand Down

0 comments on commit 2a5aab7

Please sign in to comment.