Skip to content

Commit

Permalink
fix(service): update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Nov 20, 2022
1 parent d24c173 commit 31dc122
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions packages/service/storage-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@
"fp": "yarn format:prettier",
"start": "yarn serve",
"lint": "run-s lint:*",
"lint:ts": "eslint **/*.ts",
"lint:ts": "eslint . --config .eslintrc.json --ext .ts",
"build": "run-s build:*",
"build:ts": "tsc --build",
"format": "run-s format:prettier format:eslint",
"format:eslint": "eslint **/*.ts --fix",
"format:prettier": "prettier \"**/*.{html,json,md,ts}\" --ignore-path ./.eslintignore --write",
"format:eslint": "yarn lint:ts --fix",
"format:prettier": "prettier \"**/*.{html,json,md,ts}\" --write",
"clean": "rimraf dist/",
"serve": "node --trace-gc dist/index.js",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
"watch": "run-s clean build && run-p watch:ts watch:node",
"watch:node": "nodemon -w dist/ --trace-gc dist/index.js",
"watch:node": "nodemon -w dist/ dist/index.js",
"watch:debug-node": "nodemon -w dist/ --inspect dist/index.js",
"watch:ts": "yarn build:ts --watch --preserveWatchOutput"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/starter/nanoservice/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
"fp": "yarn format:prettier",
"start": "yarn serve",
"lint": "run-s lint:*",
"lint:ts": "eslint **/*.ts",
"lint:ts": "eslint . --config .eslintrc.json --ext .ts --ignore-path .gitignore",
"build": "run-s build:*",
"build:ts": "tsc --build",
"format": "run-s format:prettier format:eslint",
"format:eslint": "eslint **/*.ts --fix",
"format:prettier": "prettier \"**/*.{html,json,md,ts}\" --ignore-path ./.eslintignore --write",
"format:eslint": "yarn lint:ts --fix",
"format:prettier": "prettier . --ignore-path .gitignore --write",
"clean": "rimraf dist/",
"serve": "node dist/index.js",
"serve:debug": "node --inspect dist/index.js",
Expand Down

0 comments on commit 31dc122

Please sign in to comment.