2022-08-05 04:19:01 +03:00
|
|
|
#!/usr/bin/env -S tea -E
|
|
|
|
|
|
|
|
/*---
|
|
|
|
args:
|
|
|
|
- deno
|
|
|
|
- run
|
2022-09-08 23:40:35 +03:00
|
|
|
- --allow-read
|
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-30 16:03:03 +03:00
|
|
|
import * as ARGV from "./utils/args.ts"
|
2022-11-09 19:22:10 +03:00
|
|
|
import { set_output } from "./utils/gha.ts";
|
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
|
|
|
|
2022-09-30 16:03:03 +03:00
|
|
|
const dry = await ARGV.toArray(ARGV.pkgs())
|
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-11-09 19:22:10 +03:00
|
|
|
await set_output('pkgs', wet.dry.map(pkg.str))
|
2022-08-17 15:22:22 +03:00
|
|
|
} else {
|
2022-11-09 19:22:10 +03:00
|
|
|
const gas = wet.dry.map(pkg.str)
|
2022-09-26 15:28:58 +03:00
|
|
|
if (flags.json) {
|
|
|
|
console.log(gas)
|
|
|
|
} else {
|
|
|
|
console.log(gas.join("\n"))
|
|
|
|
}
|
2022-08-17 15:22:22 +03:00
|
|
|
}
|