Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/scripts/lint-roadmap.ts
1006 views
1
import { loadRoadmap } from "../utils/roadmap"
2
3
async function main() {
4
const features = await loadRoadmap()
5
console.log(`Validated ${features.length} features from the roadmap.`)
6
}
7
8
main()
9
.then(() => process.exit())
10
.catch((error) => {
11
console.error(error)
12
process.exit(1)
13
})
14
15