arreglar build
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Cat /dev/Nulo 2023-07-17 16:50:07 -03:00
parent 37fcd2c158
commit 43d59c444c
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,6 +1,6 @@
build/ build/
node_modules/ node_modules/
build.js/ build-js/
.env .env
cache/ cache/
rootfs/ rootfs/

View file

@ -5,7 +5,7 @@
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "esbuild compilar.ts --target=node18 --outdir=build.js --sourcemap && cp *.js build.js/ && node --enable-source-maps --trace-uncaught build.js/compilar.js", "build": "esbuild compilar.ts *.js --target=node18 --outdir=build-js --sourcemap && node --enable-source-maps --trace-uncaught build-js/compilar.js",
"check": "tsc", "check": "tsc",
"refresh-feeds": "node feeds.js refresh" "refresh-feeds": "node feeds.js refresh"
}, },