mirror of
https://github.com/pezkuwichain/pezkuwi-dev.git
synced 2026-04-22 02:08:01 +00:00
12 lines
300 B
JavaScript
Executable File
12 lines
300 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
// Copyright 2017-2025 @pezkuwi/dev authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { importRelative } from './util.mjs';
|
|
|
|
const ghp = await importRelative('gh-pages', 'gh-pages/bin/gh-pages.js');
|
|
|
|
await ghp.default(process.argv);
|
|
|
|
console.log('Published');
|