diff --git a/README.md b/README.md index 1c714e998e..99bd68916a 100644 --- a/README.md +++ b/README.md @@ -65,10 +65,10 @@ cd my-app > NOTE: You can also add the `--typescript` flag to bootstrap a react-app with > typescript support -Next, install `react-md` and `node-sass`: +Next, install `react-md` and `sass`: ```sh -npm install --save react-md node-sass +npm install --save react-md sass ``` Next, create a `src/App.scss` file to include all the `react-md` styles and diff --git a/examples/create-react-app-typescript/package.json b/examples/create-react-app-typescript/package.json index dd3696518b..979fd165c8 100644 --- a/examples/create-react-app-typescript/package.json +++ b/examples/create-react-app-typescript/package.json @@ -17,12 +17,12 @@ "@types/react": "^16.9.53", "@types/react-dom": "^16.9.8", "@types/react-router-dom": "^5.1.5", - "node-sass": "^4.14.1", "react": "^17.0.1", "react-dom": "^17.0.1", "react-md": "latest", "react-router-dom": "^5.2.0", "react-scripts": "4.0.0", + "sass": "^1.36.0", "typescript": "^4.0.3", "web-vitals": "^0.2.4" }, diff --git a/examples/create-react-app/package.json b/examples/create-react-app/package.json index 09de084af6..e767c435e5 100644 --- a/examples/create-react-app/package.json +++ b/examples/create-react-app/package.json @@ -12,12 +12,12 @@ "@testing-library/jest-dom": "^5.11.6", "@testing-library/react": "^11.1.2", "@testing-library/user-event": "^12.2.2", - "node-sass": "^4.14.1", "react": "^17.0.1", "react-dom": "^17.0.1", "react-md": "latest", "react-router-dom": "^5.2.0", "react-scripts": "4.0.0", + "sass": "^1.36.0", "web-vitals": "^0.2.4" }, "eslintConfig": { diff --git a/examples/gatsby-typescript/package.json b/examples/gatsby-typescript/package.json index 07f4caa02f..3b6f9266c5 100644 --- a/examples/gatsby-typescript/package.json +++ b/examples/gatsby-typescript/package.json @@ -22,7 +22,7 @@ "gatsby-plugin-layout": "^1.3.10", "gatsby-plugin-sass": "^2.3.12", "gatsby-plugin-typescript": "^2.4.16", - "node-sass": "^4.14.1", - "prettier": "2.0.5" + "prettier": "2.0.5", + "sass": "^1.36.0" } } diff --git a/examples/gatsby/package.json b/examples/gatsby/package.json index eb6a530d50..6dee6c2f66 100644 --- a/examples/gatsby/package.json +++ b/examples/gatsby/package.json @@ -21,7 +21,7 @@ "devDependencies": { "gatsby-plugin-layout": "^1.3.10", "gatsby-plugin-sass": "^2.3.12", - "node-sass": "^4.14.1", - "prettier": "2.0.5" + "prettier": "2.0.5", + "sass": "^1.36.0" } } diff --git a/examples/nextjs-typescript/package.json b/examples/nextjs-typescript/package.json index 557cb2cf30..556e075a12 100644 --- a/examples/nextjs-typescript/package.json +++ b/examples/nextjs-typescript/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@types/node": "^14.0.27", "@types/react": "^16.9.43", - "node-sass": "^4.14.1", + "sass": "^1.36.0", "typescript": "^3.9.7" } } diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 3296270143..38b0638752 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -14,6 +14,6 @@ "react-md": "latest" }, "devDependencies": { - "node-sass": "^4.14.1" + "sass": "^1.36.0" } } diff --git a/package.json b/package.json index 5204495ddb..9c3597e1be 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,6 @@ "@types/jest": "^27.0.0", "@types/lodash": "^4.14.172", "@types/node": "^15.14.7", - "@types/node-sass": "^4.11.2", "@types/prettier": "^2.3.2", "@types/reach__router": "^1.3.9", "@types/react": "^17.0.17", diff --git a/packages/dev-utils/package.json b/packages/dev-utils/package.json index 902501f4b0..8d6b3d4405 100644 --- a/packages/dev-utils/package.json +++ b/packages/dev-utils/package.json @@ -30,7 +30,6 @@ "lodash": "^4.17.21", "loglevel": "^1.7.1", "markdown-toc": "^1.2.0", - "node-sass": "^5.0.0", "npm-run-all": "^4.1.5", "postcss": "^8.3.6", "postcss-flexbugs-fixes": "^5.0.2", @@ -39,6 +38,7 @@ "pretty-ms": "^7.0.0", "prompts": "^2.4.1", "rimraf": "^3.0.2", + "sass": "^1.37.5", "sassdoc": "^2.7.2", "ts-morph": "^11.0.3", "typedoc": "^0.21.5", @@ -49,6 +49,7 @@ "@types/cssnano": "^4.0.1", "@types/he": "^1.1.2", "@types/prompts": "^2.0.14", + "@types/sass": "^1.16.1", "chokidar-cli": "^3.0.0" } } diff --git a/packages/dev-utils/src/sandbox/constants.ts b/packages/dev-utils/src/sandbox/constants.ts index 905f19e73f..811b75b868 100644 --- a/packages/dev-utils/src/sandbox/constants.ts +++ b/packages/dev-utils/src/sandbox/constants.ts @@ -34,7 +34,7 @@ export const DEV_DEPENDENCIES = [ "@types/node", "@types/react", "@types/react-dom", - "node-sass", + "sass", "react-scripts", "typescript", ]; diff --git a/packages/dev-utils/src/sassdoc.ts b/packages/dev-utils/src/sassdoc.ts index 759d24e296..4dcbc1bd31 100644 --- a/packages/dev-utils/src/sassdoc.ts +++ b/packages/dev-utils/src/sassdoc.ts @@ -1,7 +1,7 @@ import { writeFile } from "fs-extra"; import { omit } from "lodash"; import log from "loglevel"; -import { renderSync } from "node-sass"; +import { renderSync } from "sass"; import { join } from "path"; import { BuiltInParserName } from "prettier"; import { diff --git a/packages/dev-utils/src/themes.ts b/packages/dev-utils/src/themes.ts index 17f33c0b22..2b9fb6c959 100644 --- a/packages/dev-utils/src/themes.ts +++ b/packages/dev-utils/src/themes.ts @@ -3,7 +3,7 @@ import { writeFileSync } from "fs"; import { ensureDir, writeFile } from "fs-extra"; import { flatMap } from "lodash"; import log from "loglevel"; -import { renderSync } from "node-sass"; +import { renderSync } from "sass"; import { join } from "path"; import postcss, { AcceptedPlugin } from "postcss"; import postcssFlexbugsFixes from "postcss-flexbugs-fixes"; diff --git a/packages/dev-utils/src/utils/styles/variable.ts b/packages/dev-utils/src/utils/styles/variable.ts index 7913e86208..d2fc7c81e0 100644 --- a/packages/dev-utils/src/utils/styles/variable.ts +++ b/packages/dev-utils/src/utils/styles/variable.ts @@ -1,6 +1,6 @@ import { VariableItem } from "sassdoc"; import log from "loglevel"; -import { renderSync } from "node-sass"; +import { renderSync } from "sass"; import { tempStylesDir, Primative, SimplePrimative } from "../../constants"; export type VariableValue = diff --git a/packages/documentation/package.json b/packages/documentation/package.json index 11df3f7cba..e4b7470477 100644 --- a/packages/documentation/package.json +++ b/packages/documentation/package.json @@ -72,7 +72,8 @@ "react-router-dom": "^5.2.0", "react-swipeable": "^6.1.2", "react-transition-group": "^4.4.2", - "react-virtualized": "^9.22.3" + "react-virtualized": "^9.22.3", + "sass": "^1.37.5" }, "devDependencies": { "@babel/core": "^7.15.0", @@ -88,7 +89,6 @@ "babel-plugin-prismjs": "^2.1.0", "cross-env": "^7.0.3", "eslint-config-next": "^11.1.0", - "node-sass": "^5.0.0", "npm-run-all": "^4.1.5", "raw-loader": "^4.0.2", "typescript": "^4.3.5", diff --git a/packages/react-md/README.md b/packages/react-md/README.md index 6f9ff8fab5..0f007cee6a 100644 --- a/packages/react-md/README.md +++ b/packages/react-md/README.md @@ -120,10 +120,10 @@ cd my-app > NOTE: You can also add the `--typescript` flag to bootstrap a react-app with > typescript support -Next, install `react-md` and `node-sass`: +Next, install `react-md` and `sass`: ```sh -npm install --save react-md node-sass +npm install --save react-md sass ``` Next, create a `src/App.scss` file to include all the `react-md` styles and diff --git a/yarn.lock b/yarn.lock index 111ef479ed..43966a5a24 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1960,13 +1960,6 @@ resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.1.tgz#283f669ff76d7b8260df8ab7a4262cc83d988256" integrity sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg== -"@types/node-sass@^4.11.2": - version "4.11.2" - resolved "https://registry.yarnpkg.com/@types/node-sass/-/node-sass-4.11.2.tgz#ecdaa44a1ba8847bf7dea2aadbfe33a91a263514" - integrity sha512-pOFlTw/OtZda4e+yMjq6/QYuvY0RDMQ+mxXdWj7rfSyf18V8hS4SfgurO+MasAkQsv6Wt6edOGlwh5QqJml9gw== - dependencies: - "@types/node" "*" - "@types/node@*": version "16.6.0" resolved "https://registry.yarnpkg.com/@types/node/-/node-16.6.0.tgz#0d5685f85066f94e97f19e8a67fe003c5fadacc4" @@ -2083,6 +2076,13 @@ dependencies: "@types/node" "*" +"@types/sass@^1.16.1": + version "1.16.1" + resolved "https://registry.yarnpkg.com/@types/sass/-/sass-1.16.1.tgz#cf465bd1fea486d0331f760db023de14daf4980d" + integrity sha512-iZUcRrGuz/Tbg3loODpW7vrQJkUtpY2fFSf4ELqqkApcS2TkZ1msk7ie8iZPB86lDOP8QOTTmuvWjc5S0R9OjQ== + dependencies: + "@types/node" "*" + "@types/scheduler@*": version "0.16.1" resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" @@ -2483,11 +2483,6 @@ alphanum-sort@^1.0.2: resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= - anser@1.4.9: version "1.4.9" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760" @@ -2813,11 +2808,6 @@ async-each@^1.0.0: resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== -async-foreach@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" - integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= - asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -3602,6 +3592,21 @@ chokidar@3.5.1: optionalDependencies: fsevents "~2.3.1" +"chokidar@>=3.0.0 <4.0.0", chokidar@^3.3.0, chokidar@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + chokidar@^1.6.0: version "1.7.0" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" @@ -3618,21 +3623,6 @@ chokidar@^1.6.0: optionalDependencies: fsevents "^1.0.0" -chokidar@^3.3.0, chokidar@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" - integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - chownr@^1.0.1, chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -6442,13 +6432,6 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" -gaze@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" - integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== - dependencies: - globule "^1.0.0" - generate-function@^2.0.0: version "2.3.1" resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f" @@ -8593,11 +8576,6 @@ jju@~1.4.0: resolved "https://registry.yarnpkg.com/jju/-/jju-1.4.0.tgz#a3abe2718af241a2b2904f84a625970f389ae32a" integrity sha1-o6vicYryQaKykE+EpiWXDzia4yo= -js-base64@^2.1.8: - version "2.5.2" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.2.tgz#313b6274dda718f714d00b3330bbae6e38e90209" - integrity sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ== - js-cookie@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-3.0.0.tgz#db1661d5459920ec95aaf186ccf74ceb4a495164" @@ -9578,7 +9556,7 @@ memorystream@^0.3.1: resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= -meow@^3.3.0, meow@^3.7.0: +meow@^3.3.0: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= @@ -9970,7 +9948,7 @@ mute-stream@0.0.8, mute-stream@~0.0.4: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== -nan@^2.12.1, nan@^2.13.2: +nan@^2.12.1: version "2.14.0" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== @@ -10190,28 +10168,6 @@ node-releases@^1.1.71: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe" integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw== -node-sass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-5.0.0.tgz#4e8f39fbef3bac8d2dc72ebe3b539711883a78d2" - integrity sha512-opNgmlu83ZCF792U281Ry7tak9IbVC+AKnXGovcQ8LG8wFaJv6cLnRlc6DIHlmNxWEexB5bZxi9SZ9JyUuOYjw== - dependencies: - async-foreach "^0.1.3" - chalk "^1.1.1" - cross-spawn "^7.0.3" - gaze "^1.0.0" - get-stdin "^4.0.1" - glob "^7.0.3" - lodash "^4.17.15" - meow "^3.7.0" - mkdirp "^0.5.1" - nan "^2.13.2" - node-gyp "^7.1.0" - npmlog "^4.0.0" - request "^2.88.0" - sass-graph "2.2.5" - stdout-stream "^1.4.0" - "true-case-path" "^1.0.2" - nopt@^4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" @@ -10418,7 +10374,7 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" -npmlog@^4.0.0, npmlog@^4.1.2: +npmlog@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== @@ -12886,16 +12842,6 @@ sass-convert@^0.5.0: through2 "^2.0.0" which "^1.0.5" -sass-graph@2.2.5: - version "2.2.5" - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8" - integrity sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag== - dependencies: - glob "^7.0.0" - lodash "^4.0.0" - scss-tokenizer "^0.2.3" - yargs "^13.3.2" - sass-lint@^1.13.1: version "1.13.1" resolved "https://registry.yarnpkg.com/sass-lint/-/sass-lint-1.13.1.tgz#5fd2b2792e9215272335eb0f0dc607f61e8acc8f" @@ -12916,6 +12862,13 @@ sass-lint@^1.13.1: path-is-absolute "^1.0.0" util "^0.10.3" +sass@^1.37.5: + version "1.37.5" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.37.5.tgz#f6838351f7cc814c4fcfe1d9a20e0cabbd1e7b3c" + integrity sha512-Cx3ewxz9QB/ErnVIiWg2cH0kiYZ0FPvheDTVC6BsiEGBTZKKZJ1Gq5Kq6jy3PKtL6+EJ8NIoaBW/RSd2R6cZOA== + dependencies: + chokidar ">=3.0.0 <4.0.0" + sassdoc-extras@^2.5.0: version "2.5.1" resolved "https://registry.yarnpkg.com/sassdoc-extras/-/sassdoc-extras-2.5.1.tgz#4365a0463c9a085d588c213a06c82beb85966400" @@ -12999,14 +12952,6 @@ scss-comment-parser@^0.8.4: dependencies: cdocparser "^0.13.0" -scss-tokenizer@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" - integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE= - dependencies: - js-base64 "^2.1.8" - source-map "^0.4.2" - seek-bzip@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/seek-bzip/-/seek-bzip-1.0.5.tgz#cfe917cb3d274bcffac792758af53173eb1fabdc" @@ -13376,13 +13321,6 @@ source-map@0.8.0-beta.0: dependencies: whatwg-url "^7.0.0" -source-map@^0.4.2: - version "0.4.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" - integrity sha1-66T12pwNyZneaAMti092FzZSA2s= - dependencies: - amdefine ">=0.0.4" - source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" @@ -13518,13 +13456,6 @@ static-extend@^0.1.1: resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= -stdout-stream@^1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" - integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== - dependencies: - readable-stream "^2.0.1" - stream-browserify@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" @@ -14289,13 +14220,6 @@ trim-repeated@^1.0.0: dependencies: escape-string-regexp "^1.0.2" -"true-case-path@^1.0.2": - version "1.0.3" - resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" - integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== - dependencies: - glob "^7.1.2" - ts-jest@^27.0.4: version "27.0.4" resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.0.4.tgz#df49683535831560ccb58f94c023d831b1b80df0" @@ -15272,7 +15196,7 @@ yargs-parser@^13.1.2: camelcase "^5.0.0" decamelize "^1.2.0" -yargs@^13.3.0, yargs@^13.3.2: +yargs@^13.3.0: version "13.3.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==