1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2026-06-12 07:35:28 -04:00

Move cli.js to bin/cli.js

This commit is contained in:
XhmikosR
2023-05-05 17:55:46 +03:00
parent 1429f5b716
commit 8e02ee16b9
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
import { spawn } from 'node:child_process';
import process from 'node:process';
import hugo from './index.js';
import hugo from '../index.js';
const input = process.argv.slice(2);
+2 -2
View File
@@ -27,7 +27,7 @@
".": "./index.js"
},
"bin": {
"hugo": "cli.js"
"hugo": "bin/cli.js"
},
"dependencies": {
"@xhmikosr/bin-wrapper": "^5.0.1",
@@ -46,8 +46,8 @@
"postinstall": "node lib/install.js"
},
"files": [
"bin/cli.js",
"lib/*.js",
"cli.js",
"index.js"
],
"engines": {