forked from svrjs/svrjs
Rename utilities directory to utils.
This commit is contained in:
parent
343dce37ec
commit
7133e750cc
6 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ esbuild.build({
|
|||
esbuildCopyPlugin.copy({
|
||||
resolveFrom: __dirname,
|
||||
assets: {
|
||||
from: ["./utilities/**/*"],
|
||||
from: ["./utils/**/*"],
|
||||
to: ["./dist"],
|
||||
}
|
||||
}),
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"scripts": {
|
||||
"build": "node esbuild.config.js",
|
||||
"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",
|
||||
"start": "node dist/svr.js",
|
||||
"test": "jest"
|
||||
|
|
Reference in a new issue