Go to file
Max Howell f4f1413665 Just use the full build.ts
Fixes issue where we don't install zlib to build zlib even though llvm needs it.

Doing these in steps was a cool demo of our primitives but led to issues due to install all deps up front rather than just before each build so fuck it.
2022-12-21 10:43:54 -05:00
.github/workflows Just use the full build.ts 2022-12-21 10:43:54 -05:00
.vscode infra 2022-08-01 15:43:40 -04:00
projects Tidy virtual-env creation script 2022-12-20 08:01:01 -05:00
scripts Just use the full build.ts 2022-12-21 10:43:54 -05:00
import-map.json bump libtea 2022-12-21 09:43:24 -05:00
README.md update script specification in README 2022-12-20 18:29:53 -05:00
tsconfig.json infra 2022-08-01 15:43:40 -04:00

tea

This pantry† represents the most essential open source packages in the world. We promise to prioritize fixes, updates and robustness for these packages. We will not lightly accept additions, and thus suggest submitting your pull request against pantry.extra first.

† see pantry.zero for “what is a pantry”

Use with tea/cli

tea/cli clones/updates this pantry and pantry.extra when installed with the installer or when you run tea --sync. At this time pantries are not versioned.

Contributing

See the contributing guide in pantry.zero.

 

Meta

Dependencies

Project Version
deno.land ^1.27
tea.xyz ^0

Build All

scripts/ls.ts | scripts/sort.ts | scripts/build.ts

Typecheck

for x in $(find scripts -name '*.ts'); do
  deno check --unstable --import-map=$SRCROOT/import-map.json $x
done