diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index c69ce8702a9..e38ae6bfbbb 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -67,7 +67,7 @@ jobs: run: cd src/docs && ${{ env.runtime }} i daisyui@${{ github.event.inputs.npm-tag }} - name: Get new data from API - run: cd src/docs && ${{ env.runtime }} run get-files + run: cd src/docs && ${{ env.runtime }} run get-json - name: Build docs run: cd src/docs && ${{ env.runtime }} run build diff --git a/package.json b/package.json index ebb38b8fb2e..0d3c69df5cb 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ ] }, "scripts": { - "init": "npm install && npm run build && cd src/docs && npm run get-files && npm install && cd src/experiments/playground && npm install", + "init": "npm install && npm run build && cd src/docs && npm run get-json && npm install && cd src/experiments/playground && npm install", "prettier": "prettier --write '**/*.{js,svelte,md,json,html,css}' --config src/.prettierrc.yaml --ignore-path src/.prettierignore", "prebase": "postcss --config src/base src/base/*.css --base src --dir dist", "base": "cat dist/base/*.css > dist/base.css",