mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-04 10:50:59 +01:00
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
/* eslint-env es6 */
|
|
|
|
const shell = require('shelljs');
|
|
|
|
shell.rm('-rf', 'doc');
|
|
|
|
const head = shell.exec('git show-ref --hash HEAD').stdout.slice(0, 6);
|
|
|
|
const link_format = `https://github.com/{package.repository}/blob/${head}/{file}#L{line}`;
|
|
|
|
shell.exec(`node node_modules/.bin/ndoc --link-format "${link_format}"`);
|