Commit efb693b5 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix(ci): Update path to downloaded data (and make build task parallel)

parent d04d4622
Loading
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -10,10 +10,9 @@
    "download": "./acorn download --buckets buckets.json --output src/data",
    "postdownload": "npm run format",
    "start": "astro dev",
    "build:projects": "./acorn export src/data/project --output public/pdf",
    "build:pdf": "run-s build:projects",
    "build:pdf": "./acorn export src/data --output public/pdf",
    "build:src": "astro build",
    "build": "run-s build:pdf build:src",
    "build": "run-p build:*",
    "preview": "astro preview",
    "astro": "astro",
    "format": "./acorn format src/data --ignore highlight -vv",