mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
d9be5a35f9
prevents dep injection
46 lines
1.1 KiB
TypeScript
Executable file
46 lines
1.1 KiB
TypeScript
Executable file
#!/usr/bin/env -S tea -E
|
|
|
|
/*---
|
|
args:
|
|
- deno
|
|
- run
|
|
- --allow-net
|
|
- --allow-run
|
|
- --allow-read
|
|
- --allow-write={{tea.prefix}}
|
|
- --allow-env
|
|
- --unstable
|
|
- --import-map={{ srcroot }}/import-map.json
|
|
---*/
|
|
|
|
import { usePantry, useFlags, useCellar, useInventory } from "hooks"
|
|
import { hydrate, install, link } from "prefab"
|
|
import { str as pkgstr } from "utils/pkg.ts"
|
|
import * as ARGV from "./utils/args.ts"
|
|
import { panic } from "utils/error.ts"
|
|
import build from "./build/build.ts"
|
|
|
|
useFlags()
|
|
|
|
const pantry = usePantry()
|
|
const cellar = useCellar()
|
|
const inventory = useInventory()
|
|
const raw = await ARGV.toArray(ARGV.pkgs())
|
|
|
|
for (const rq of raw) {
|
|
const dry = await pantry.getDeps(rq)
|
|
const wet = await hydrate([...dry.runtime, ...dry.build])
|
|
|
|
for (const pkg of wet.pkgs) {
|
|
if (!await cellar.has(pkg)) {
|
|
const version = await inventory.select(pkg) ?? panic(`${pkgstr(pkg)} not found`)
|
|
const installation = await install({ project: pkg.project, version })
|
|
await link(installation)
|
|
}
|
|
}
|
|
|
|
const pkg = await pantry.resolve(rq)
|
|
await build(pkg)
|
|
await link(pkg)
|
|
}
|