From c29fdcb8dc5f5d2766a9dd139bd428e532739b3c Mon Sep 17 00:00:00 2001 From: Jason Dent Date: Wed, 29 Sep 2021 08:23:44 +0200 Subject: [PATCH] fix: Move `@types` dependencies to dev (#1811) * fix: Move `@types` dependencies to dev --- .github/release-drafter.yml | 6 +++--- packages/cspell/package-lock.json | 7 +++++-- packages/cspell/package.json | 4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 29ac2123fa91..e126b9c94de9 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -29,12 +29,12 @@ categories: change-template: |
$TITLE (#$NUMBER) - + ### $TITLE (#$NUMBER) $BODY - + --- - +
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. diff --git a/packages/cspell/package-lock.json b/packages/cspell/package-lock.json index 7c23f9dc028f..1ba900418108 100644 --- a/packages/cspell/package-lock.json +++ b/packages/cspell/package-lock.json @@ -979,6 +979,7 @@ "version": "5.0.2", "resolved": "https://registry.npmjs.org/@types/file-entry-cache/-/file-entry-cache-5.0.2.tgz", "integrity": "sha512-6uLb9gNrW+e4JivzglLQ2eJSyd7xvu5gSkwKIlOZOmuFgz8U7O9ddTwWjmWgUaIeukdQhoWefI5fQ5/MRTw8XA==", + "dev": true, "requires": { "@types/node": "*" } @@ -1014,7 +1015,8 @@ "@types/imurmurhash": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@types/imurmurhash/-/imurmurhash-0.1.1.tgz", - "integrity": "sha512-ThbETc7uxx6rIpNP0fE3bqrSSIeBWPrFY4TzY4WFsvdQYWinub+PLZV/9nT3zicRJJPWbmHqJIsHZHeh5Ad+Ug==" + "integrity": "sha512-ThbETc7uxx6rIpNP0fE3bqrSSIeBWPrFY4TzY4WFsvdQYWinub+PLZV/9nT3zicRJJPWbmHqJIsHZHeh5Ad+Ug==", + "dev": true }, "@types/istanbul-lib-coverage": { "version": "2.0.3", @@ -1058,7 +1060,8 @@ "@types/node": { "version": "16.10.1", "resolved": "https://registry.npmjs.org/@types/node/-/node-16.10.1.tgz", - "integrity": "sha512-4/Z9DMPKFexZj/Gn3LylFgamNKHm4K3QDi0gz9B26Uk0c8izYf97B5fxfpspMNkWlFupblKM/nV8+NA9Ffvr+w==" + "integrity": "sha512-4/Z9DMPKFexZj/Gn3LylFgamNKHm4K3QDi0gz9B26Uk0c8izYf97B5fxfpspMNkWlFupblKM/nV8+NA9Ffvr+w==", + "dev": true }, "@types/parse-json": { "version": "4.0.0", diff --git a/packages/cspell/package.json b/packages/cspell/package.json index 9f24506f38e3..51734561abcc 100644 --- a/packages/cspell/package.json +++ b/packages/cspell/package.json @@ -69,8 +69,6 @@ }, "homepage": "https://streetsidesoftware.github.io/cspell/", "dependencies": { - "@types/file-entry-cache": "^5.0.2", - "@types/imurmurhash": "^0.1.1", "chalk": "^4.1.2", "commander": "^8.2.0", "comment-json": "^4.1.1", @@ -90,8 +88,10 @@ }, "devDependencies": { "@cspell/cspell-types": "^5.11.0", + "@types/file-entry-cache": "^5.0.2", "@types/fs-extra": "^9.0.13", "@types/glob": "^7.1.4", + "@types/imurmurhash": "^0.1.1", "@types/micromatch": "^4.0.2", "@types/minimatch": "^3.0.5", "jest": "^27.2.3",