mirror of
https://github.com/playwright-community/playwright-go.git
synced 2026-06-12 21:01:15 +08:00
8 lines
231 B
JavaScript
Executable File
8 lines
231 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
const fs = require("fs")
|
|
const path = require("path")
|
|
const { getAPIDocs } = require("./helpers")
|
|
|
|
const api = getAPIDocs()
|
|
|
|
fs.writeFileSync(path.join(__dirname, "..", "api.json"), JSON.stringify(api, null, 2)) |