mirror of
https://github.com/CompeyDev/create-guilded-bot.git
synced 2024-12-12 20:50:36 +00:00
feat: stable CLI release
This commit is contained in:
parent
19563386fa
commit
b5b7921cb8
3 changed files with 11 additions and 3 deletions
|
@ -1,8 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "create-guilded-bot",
|
"name": "create-guilded-bot",
|
||||||
"version": "1.0.0",
|
"version": "0.2.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "dist/src/index.js",
|
||||||
|
"bin": {
|
||||||
|
"create-guilded-bot": "dist/src/index.js"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"dev": "ts-node-dev src/index.ts",
|
"dev": "ts-node-dev src/index.ts",
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
import fs, { createWriteStream, mkdir, readdir, readdirSync } from "fs";
|
import fs, { createWriteStream, mkdir, readdir, readdirSync } from "fs";
|
||||||
import { copySync, removeSync } from "fs-extra";
|
import { copySync, removeSync } from "fs-extra";
|
||||||
import * as inquirer from "inquirer";
|
import * as inquirer from "inquirer";
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": "tsconfig/default"
|
"extends": "tsconfig/default",
|
||||||
|
"compilerOptions": {
|
||||||
|
"outDir": "dist"
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue