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({
|
esbuildCopyPlugin.copy({
|
||||||
resolveFrom: __dirname,
|
resolveFrom: __dirname,
|
||||||
assets: {
|
assets: {
|
||||||
from: ["./utilities/**/*"],
|
from: ["./utils/**/*"],
|
||||||
to: ["./dist"],
|
to: ["./dist"],
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Reference in a new issue