Commit b38ce038 authored by eddie's avatar eddie Committed by GitHub

feat: remove sitemap script from prepare step (#7437)

parent 04bf0758
...@@ -67,6 +67,12 @@ jobs: ...@@ -67,6 +67,12 @@ jobs:
echo '* @uniswap/web-admins' > CODEOWNERS echo '* @uniswap/web-admins' > CODEOWNERS
git add CODEOWNERS git add CODEOWNERS
git commit -m 'ci: add global CODEOWNERS' git commit -m 'ci: add global CODEOWNERS'
- name: Update sitemap
run: |
yarn sitemap:generate
git add public/sitemap.xml
git commit -m 'ci: update sitemap'
- name: Git push - name: Git push
run: | run: |
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
"i18n:extract": "lingui extract --locale en-US", "i18n:extract": "lingui extract --locale en-US",
"i18n:compile": "lingui compile", "i18n:compile": "lingui compile",
"i18n": "yarn i18n:extract --clean && yarn i18n:compile", "i18n": "yarn i18n:extract --clean && yarn i18n:compile",
"prepare": "concurrently \"npm:ajv\" \"npm:contracts\" \"npm:graphql\" \"npm:i18n\" \"npm:sitemap:generate\"", "prepare": "concurrently \"npm:ajv\" \"npm:contracts\" \"npm:graphql\" \"npm:i18n\"",
"start": "craco start", "start": "craco start",
"start:cloud": "NODE_OPTIONS=--dns-result-order=ipv4first PORT=3001 npx wrangler pages dev --compatibility-flags=nodejs_compat --compatibility-date=2023-08-01 --proxy=3001 --port=3000 -- yarn start", "start:cloud": "NODE_OPTIONS=--dns-result-order=ipv4first PORT=3001 npx wrangler pages dev --compatibility-flags=nodejs_compat --compatibility-date=2023-08-01 --proxy=3001 --port=3000 -- yarn start",
"build": "craco build", "build": "craco build",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment