chore: .gitignore and package.json

This commit is contained in:
monoid 2024-09-28 23:52:55 +09:00
parent 2a5cb909b5
commit 4669e1c0d4
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -14,7 +14,8 @@ app/**
settings.json settings.json
comic_config.json comic_config.json
**/comic_config.json **/comic_config.json
compiled/ compile/
compile/**
deploy-scripts/ deploy-scripts/
.pnpm-store/** .pnpm-store/**

View File

@ -6,7 +6,7 @@
"scripts": { "scripts": {
"compile": "swc src --out-dir compile", "compile": "swc src --out-dir compile",
"dev": "nodemon -r @swc-node/register --enable-source-maps --exec node app.ts", "dev": "nodemon -r @swc-node/register --enable-source-maps --exec node app.ts",
"start": "node compile/app.js" "start": "node compile/src/app.js"
}, },
"author": "", "author": "",
"license": "ISC", "license": "ISC",