2022-08-05 04:19:01 +03:00
|
|
|
#!/usr/bin/env -S tea -E
|
|
|
|
|
|
|
|
/*---
|
|
|
|
args:
|
|
|
|
- deno
|
|
|
|
- run
|
|
|
|
- --allow-net
|
|
|
|
- --allow-run
|
2022-09-08 23:40:35 +03:00
|
|
|
- --allow-read
|
|
|
|
- --allow-write={{ tea.prefix }}
|
2022-08-05 04:19:01 +03:00
|
|
|
- --allow-env
|
|
|
|
- --import-map={{ srcroot }}/import-map.json
|
|
|
|
---*/
|
|
|
|
|
2022-09-01 20:49:14 +03:00
|
|
|
// sorts input for building
|
|
|
|
// does a full hydration, but only returns ordered, dry packages
|
|
|
|
|
|
|
|
|
2022-09-21 10:46:24 +03:00
|
|
|
import { pkg } from "utils"
|
2022-09-20 14:53:40 +03:00
|
|
|
import { usePantry, useFlags } from "hooks"
|
|
|
|
import { hydrate } from "prefab"
|
2022-09-26 15:28:58 +03:00
|
|
|
import { PackageRequirement } from "types"
|
2022-08-10 21:58:22 +03:00
|
|
|
|
2022-08-17 15:22:22 +03:00
|
|
|
const flags = useFlags()
|
2022-09-01 20:49:14 +03:00
|
|
|
const pantry = usePantry()
|
2022-08-05 04:19:01 +03:00
|
|
|
|
|
|
|
const dry = Deno.args.map(project => {
|
|
|
|
const match = project.match(/projects\/(.*)\/package.yml/)
|
|
|
|
return match ? match[1] : project
|
2022-09-21 10:46:24 +03:00
|
|
|
}).map(pkg.parse)
|
2022-08-05 04:19:01 +03:00
|
|
|
|
2022-09-01 20:49:14 +03:00
|
|
|
const wet = await hydrate(dry, async (pkg, dry) => {
|
|
|
|
const deps = await pantry.getDeps(pkg)
|
|
|
|
return dry ? [...deps.build, ...deps.runtime] : deps.runtime
|
|
|
|
})
|
2022-08-05 04:19:01 +03:00
|
|
|
|
2022-08-17 15:22:22 +03:00
|
|
|
if (Deno.env.get("GITHUB_ACTIONS")) {
|
2022-09-26 23:19:31 +03:00
|
|
|
const massage = (input: PackageRequirement[], with_raw = false) =>
|
2022-09-26 15:28:58 +03:00
|
|
|
input.map(p => {
|
2022-09-26 23:19:31 +03:00
|
|
|
if (with_raw && p.constraint.raw) {
|
|
|
|
return `${p.project}@${p.constraint.raw}`
|
|
|
|
}
|
2022-09-26 15:28:58 +03:00
|
|
|
let out = pkg.str(p)
|
|
|
|
if (/[<>]/.test(out)) out = `"${out}"`
|
|
|
|
return out
|
|
|
|
}).join(" ")
|
|
|
|
|
2022-09-26 23:19:31 +03:00
|
|
|
console.log(`::set-output name=pkgs::${massage(wet.dry, true)}`)
|
2022-09-26 15:28:58 +03:00
|
|
|
console.log(`::set-output name=pre-install::${massage(wet.wet)}`)
|
2022-08-17 15:22:22 +03:00
|
|
|
} else {
|
2022-09-26 15:28:58 +03:00
|
|
|
const gas = wet.dry.map(x => pkg.str(x))
|
|
|
|
if (flags.json) {
|
|
|
|
console.log(gas)
|
|
|
|
} else {
|
|
|
|
console.log(gas.join("\n"))
|
|
|
|
}
|
2022-08-17 15:22:22 +03:00
|
|
|
}
|