diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index ad346360..0315fe21 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -12,6 +12,8 @@ jobs: should_deploy: ${{ endsWith(github.ref, steps.get_version.outputs.latest) }} steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - name: Get version id: get_version run: | diff --git a/website/package.json b/website/package.json index 2f968f03..63314cdf 100644 --- a/website/package.json +++ b/website/package.json @@ -4,16 +4,19 @@ "private": true, "description": "Website for vis.gl project", "scripts": { - "docusaurus": "docusaurus", "start": "docusaurus start", - "build": "./scripts/build.sh prod", - "build-staging": "./scripts/build.sh staging", - "swizzle": "docusaurus swizzle", + "build": "docusaurus build", "clear": "docusaurus clear", "serve": "docusaurus serve", "write-heading-ids": "ocular-doc-headers ../docs", "deploy": "docusaurus deploy" }, + "resolution_notes": { + "cheerio": "@cmfcmf/docusaurus-search-local breaks with v1.0.0 production release" + }, + "resolutions": { + "cheerio": "1.0.0-rc.9" + }, "dependencies": { "@docusaurus/core": "^2.0.0", "@vis.gl/docusaurus-website": "1.0.0-alpha.10",