1
0
Fork 0
forked from svrjs/svrjs

Rename utilities directory to utils.

This commit is contained in:
Dorian Niemiec 2024-08-26 07:35:01 +02:00
parent 343dce37ec
commit 7133e750cc
6 changed files with 2 additions and 2 deletions

View file

@ -133,7 +133,7 @@ esbuild.build({
esbuildCopyPlugin.copy({ esbuildCopyPlugin.copy({
resolveFrom: __dirname, resolveFrom: __dirname,
assets: { assets: {
from: ["./utilities/**/*"], from: ["./utils/**/*"],
to: ["./dist"], to: ["./dist"],
} }
}), }),

View file

@ -5,7 +5,7 @@
"scripts": { "scripts": {
"build": "node esbuild.config.js", "build": "node esbuild.config.js",
"dev": "npm run build && npm run start", "dev": "npm run build && npm run start",
"lint": "eslint --no-error-on-unmatched-pattern src/**/*.js src/*.js tests/**/*.test.js tests/**/*.js utilities/**/*.js", "lint": "eslint --no-error-on-unmatched-pattern src/**/*.js src/*.js tests/**/*.test.js tests/**/*.js utils/**/*.js",
"lint:fix": "npm run lint -- --fix", "lint:fix": "npm run lint -- --fix",
"start": "node dist/svr.js", "start": "node dist/svr.js",
"test": "jest" "test": "jest"