Skip to content

Commit

Permalink
Merge branch 'convert-to-nextjs' of github.com:zuplo/docs into fix-pr…
Browse files Browse the repository at this point in the history
…ev-next-pages
  • Loading branch information
esemyonov committed Dec 18, 2023
2 parents 06c6475 + c4cd9df commit 82616ef
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"dev": "npm run ci:pre && next dev",
"build": "npm run ci:pre && next build",
"postinstall": "node ./scripts/update-bundles.mjs && node ./scripts/copy-shiki.mjs",
"postbuild": "next-sitemap",
"start": "next start",
"start": "npm run ci:pre && next start",
"lint": "next lint",
"format": "prettier --write ."
"format": "prettier --write .",
"ci:pre": "npm run ci:bundles && npm run ci:policies",
"ci:bundles": "node ./scripts/update-bundles.mjs",
"ci:policies": "node ./scripts/build.mjs && node ./scripts/update-policies.main.mjs"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
Expand Down

0 comments on commit 82616ef

Please sign in to comment.