Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
feat: use new Process Steps API for Sitemap (#60)
Browse files Browse the repository at this point in the history
* feat: favicon

* feat: use new Process Steps API for Sitemap
  • Loading branch information
Robbert authored Jan 6, 2023
1 parent 51c57ba commit c5be768
Show file tree
Hide file tree
Showing 7 changed files with 887 additions and 620 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ yarn-error.log*

# generated files
*.tsbuildinfo
src/generated/
src/generated/
/public/favicon.ico
607 changes: 308 additions & 299 deletions package-lock.json

Large diffs are not rendered by default.

32 changes: 17 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run codegen && npm run build:next",
"build": "npm run codegen && npm-run-all build:**",
"build:assets": "cp node_modules/@utrecht/assets/favicon.ico public/",
"build:next": "next build",
"clean": "rimraf .next/ src/generated/",
"download": "npm-run-all download:**",
Expand Down Expand Up @@ -47,7 +48,7 @@
},
"dependencies": {
"clsx": "1.2.1",
"next": "12.2.5",
"next": "12.2.6",
"next-transpile-modules": "9.0.0",
"react": "18.2.0",
"react-dom": "18.2.0"
Expand All @@ -57,23 +58,24 @@
"@conductionnl/klanten-api": "github:CommonGateway/KlantenAPI",
"@conductionnl/overige-objecten-service": "github:Huwelijksplanner/OverigeObjecten",
"@conductionnl/trouw-service": "github:Huwelijksplanner/TrouwService",
"@gemeente-denhaag/design-tokens-components": "0.2.3-alpha.292",
"@gemeente-denhaag/process-steps": "0.1.0-alpha.99",
"@nl-design-system-unstable/amsterdam-design-tokens": "1.0.0-alpha.32",
"@gemeente-denhaag/design-tokens-components": "0.2.3-alpha.300",
"@gemeente-denhaag/process-steps": "0.1.0-alpha.129",
"@nl-design-system-unstable/amsterdam-design-tokens": "1.0.0-alpha.45",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash.merge": "4.6.7",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/node": "18.7.23",
"@types/react": "18.0.26",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"@utrecht/component-library-css": "1.0.0-alpha.390",
"@utrecht/component-library-react": "1.0.0-alpha.199",
"@utrecht/design-tokens": "1.0.0-alpha.383",
"@utrecht/web-component-library-react": "1.0.0-alpha.389",
"@utrecht/assets": "1.0.0-alpha.35",
"@utrecht/component-library-css": "1.0.0-alpha.414",
"@utrecht/component-library-react": "1.0.0-alpha.223",
"@utrecht/design-tokens": "1.0.0-alpha.407",
"@utrecht/web-component-library-react": "1.0.0-alpha.413",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-next": "12.2.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.7",
Expand All @@ -91,12 +93,12 @@
"npm-run-all": "4.1.5",
"openapi-typescript-codegen": "0.23.0",
"prettier": "2.7.1",
"react-i18next": "11.18.5",
"react-i18next": "11.18.6",
"rimraf": "3.0.2",
"sass": "1.54.7",
"sass": "1.54.9",
"sharp": "0.30.7",
"stylelint": "14.10.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-prettier": "9.0.4",
"stylelint-order": "5.0.0",
"typescript": "4.7.4"
},
Expand Down
15 changes: 15 additions & 0 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Head, Html, Main, NextScript } from "next/document";

export default function Document() {
return (
<Html>
<Head>
<link rel="icon" href="/favicon.ico" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
Loading

1 comment on commit c5be768

@vercel
Copy link

@vercel vercel bot commented on c5be768 Jan 6, 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.