fix deno on darwin/aarch64 (#98)

This commit is contained in:
Max Howell 2022-08-24 13:54:20 -04:00 committed by GitHub
parent c9e9b4a045
commit 14c3420991
3 changed files with 3 additions and 4 deletions

View file

@ -24,10 +24,9 @@ build:
mv target/release/deno "{{ prefix }}"/bin
dependencies:
rust-lang.org: 1
# llvm.org: 13 #FIXME macOS/aarch64 requires this AND fails to build with v14
llvm.org: '>=13' # macOS/aarch64 requires this (FIXME only dep where needed)
curl.se: '*' # required to download v8 (python is another option)
tea.xyz/gx/make: '*' # required to build the libffi parts
tea.xyz/gx/cc: c99
test:
script: deno --version

View file

@ -15,7 +15,7 @@ args:
---*/
import { parsePackageRequirement } from "types"
import hydrate from "prefab/hydrate.ts"
import hydrate from "prefab/hydrate-topological.ts"
import useFlags from "hooks/useFlags.ts"
import { PackageRequirement } from "types"
import usePantry from "hooks/usePantry.ts"

View file

@ -13,7 +13,7 @@ args:
---*/
import { parsePackageRequirement } from "types"
import hydrate from "prefab/hydrate.ts"
import hydrate from "prefab/hydrate-topological.ts"
import { get_build_deps } from "./_lib.ts"
import useFlags from "hooks/useFlags.ts"