Commit 34c28865 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix(ci): Restore local path to acorn binary

parent b9df1a24
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -7,17 +7,17 @@
    "dev": "astro dev --host --open",
    "dev:mac": "astro dev --host",
    "predownload": "npm run clean",
    "download": "acorn-cli download --buckets buckets.json --output src/data",
    "download": "./acorn download --buckets buckets.json --output src/data",
    "postdownload": "npm run format",
    "start": "astro dev",
    "build:pdf": "acorn-cli export src/data --output public/pdf",
    "build:pdf": "./acorn export src/data --output public/pdf",
    "build:src": "astro build",
    "build": "run-p build:*",
    "preview": "astro preview",
    "astro": "astro",
    "format": "acorn-cli format src/data --ignore highlight -vv",
    "format": "./acorn format src/data --ignore highlight -vv",
    "lint:code": "eslint --fix --config ./eslint.config.js",
    "lint:data": "acorn-cli check src/data",
    "lint:data": "./acorn check src/data",
    "lint": "run-p lint:*"
  },
  "dependencies": {