From 8c3369a00dc0b37a9c66f2c3f96332b88f993c98 Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Mon, 14 Aug 2023 00:19:36 +0300 Subject: [PATCH] chore: formatting --- .vscode/settings.json | 7 ++----- .vscode/tasks.json | 6 +++--- CHANGELOG.md | 4 ++-- nodemon.json | 11 ++--------- 4 files changed, 9 insertions(+), 19 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 8e02283..f7cf4b4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,9 +14,6 @@ "variabletoken" ], "[markdown]": { - "editor.rulers": [ - 87, - 100 - ], - }, + "editor.rulers": [87, 100] + } } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d133a64..3de6364 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -14,7 +14,7 @@ "problemMatcher": [] }, { - "command": "yarn typedoc --watch", + "command": "pnpm typedoc --watch", "label": "typedoc --watch", "type": "shell", "problemMatcher": [] @@ -32,8 +32,8 @@ "problemMatcher": [] }, { - "command": "yarn test --watchAll", - "label": "yarn test --watchAll", + "command": "pnpm test --watchAll", + "label": "pnpm test --watchAll", "type": "shell", "problemMatcher": [] }, diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c90ab3..a7e28b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,10 @@ ## [1.7.1](https://github.com/chenasraf/simple-scaffold/compare/v1.7.0...v1.7.1) (2023-06-07) - ### Bug Fixes -* local config file load error ([2b74239](https://github.com/chenasraf/simple-scaffold/commit/2b7423993be06b2375631642455c801ae2acf75f)) +- local config file load error + ([2b74239](https://github.com/chenasraf/simple-scaffold/commit/2b7423993be06b2375631642455c801ae2acf75f)) ## [1.7.0](https://github.com/chenasraf/simple-scaffold/compare/v1.7.0-develop.5...v1.7.0) (2023-05-17) diff --git a/nodemon.json b/nodemon.json index 61b4170..8104691 100644 --- a/nodemon.json +++ b/nodemon.json @@ -1,13 +1,6 @@ { - "ignore": [ - "**/*.test.ts", - "**/*.spec.ts", - ".git", - "node_modules" - ], - "watch": [ - "src" - ], + "ignore": ["**/*.test.ts", "**/*.spec.ts", ".git", "node_modules"], + "watch": ["src"], "exec": "node -r tsconfig-paths/register -r ts-node/register ./src/index.ts", "ext": "ts, js" }