From b8bf47d13ce4f5f32b476d1c4f44c77841023979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 12 Nov 2024 16:12:53 +0200 Subject: [PATCH 01/22] v1 scripts --- .github/workflows/cspell.yaml | 32 ++++++++++++++++++++++++++++ common/config/rush/command-line.json | 7 ++++++ 2 files changed, 39 insertions(+) create mode 100644 .github/workflows/cspell.yaml diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml new file mode 100644 index 00000000000..7a70a0a3b36 --- /dev/null +++ b/.github/workflows/cspell.yaml @@ -0,0 +1,32 @@ +# Workflow to check cSpell on entire monorepo + +name: cSpell + +on: + workflow_dispatch: + pull_request: + branches: + - master + - release/* + +jobs: + spell-check: + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@v2 + + - name: Setup node + uses: actions/setup-node@v4 + with: + node-version: 18 + + - name: Rush install + run: node common/scripts/install-run-rush.js install + + - name: Run cSpell + run: cspell lint "**" --gitignore + + - name: Check for misspellings + if: failure() + run: echo "Misspellings found in code. Please fix them." diff --git a/common/config/rush/command-line.json b/common/config/rush/command-line.json index 1b51feb1154..5f8b386b868 100644 --- a/common/config/rush/command-line.json +++ b/common/config/rush/command-line.json @@ -135,6 +135,13 @@ "safeForSimultaneousRushProcesses": true, "autoinstallerName": "rush-prettier", "shellCommand": "prettier --write ." + }, + { + "name": "cspell", + "commandKind": "global", + "summary": "Runs cSpell for the entire monorepo.", + "safeForSimultaneousRushProcesses": true, + "shellCommand": "cspell lint \"**\" --gitignore" } ] } From f5d96c4b437678218b7b522ed141a5c865ecca6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 12 Nov 2024 16:16:15 +0200 Subject: [PATCH 02/22] fixed yaml script --- .github/workflows/cspell.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index 7a70a0a3b36..f54da033f03 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -16,6 +16,11 @@ jobs: - name: Checkout branch uses: actions/checkout@v2 + - name: Configure git + run: | + git config --local user.email imodeljs-admin@users.noreply.github.com + git config --local user.name imodeljs-admin + - name: Setup node uses: actions/setup-node@v4 with: From 8ebc0cad75bd2a11ea8877f6d75321686cf5b792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 12 Nov 2024 16:19:26 +0200 Subject: [PATCH 03/22] another test --- .github/workflows/cspell.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index f54da033f03..d3423f90d53 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -30,7 +30,7 @@ jobs: run: node common/scripts/install-run-rush.js install - name: Run cSpell - run: cspell lint "**" --gitignore + run: npx cspell lint "**" --gitignore - name: Check for misspellings if: failure() From 7b1723fbce1c978b1fff548cd2a8cc12eeca7da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 12 Nov 2024 16:23:38 +0200 Subject: [PATCH 04/22] Test the script --- .../src/test/common/countMatchesInString.test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/components-react/src/test/common/countMatchesInString.test.ts b/ui/components-react/src/test/common/countMatchesInString.test.ts index a10a6194caa..287467ec88d 100644 --- a/ui/components-react/src/test/common/countMatchesInString.test.ts +++ b/ui/components-react/src/test/common/countMatchesInString.test.ts @@ -10,12 +10,10 @@ describe("countMatchesInString", () => { }); it("returns 2 when there're two consecutive matches", () => { - // cspell:disable-next-line expect(countMatchesInString("abbc", "b")).toEqual(2); }); it("returns 2 when there're two non-consecutive matches", () => { - // cspell:disable-next-line expect(countMatchesInString("abcbd", "b")).toEqual(2); }); From 00bd7f9e3ce2b5de38998ca2f4f4b81201330847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 12 Nov 2024 16:27:26 +0200 Subject: [PATCH 05/22] Works --- .github/workflows/cspell.yaml | 8 ++------ .../src/test/common/countMatchesInString.test.ts | 2 ++ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index d3423f90d53..c8971c6d3f2 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -1,4 +1,4 @@ -# Workflow to check cSpell on entire monorepo +# Workflow to run cSpell on entire monorepo name: cSpell @@ -10,7 +10,7 @@ on: - release/* jobs: - spell-check: + cspell: runs-on: ubuntu-latest steps: - name: Checkout branch @@ -31,7 +31,3 @@ jobs: - name: Run cSpell run: npx cspell lint "**" --gitignore - - - name: Check for misspellings - if: failure() - run: echo "Misspellings found in code. Please fix them." diff --git a/ui/components-react/src/test/common/countMatchesInString.test.ts b/ui/components-react/src/test/common/countMatchesInString.test.ts index 287467ec88d..a10a6194caa 100644 --- a/ui/components-react/src/test/common/countMatchesInString.test.ts +++ b/ui/components-react/src/test/common/countMatchesInString.test.ts @@ -10,10 +10,12 @@ describe("countMatchesInString", () => { }); it("returns 2 when there're two consecutive matches", () => { + // cspell:disable-next-line expect(countMatchesInString("abbc", "b")).toEqual(2); }); it("returns 2 when there're two non-consecutive matches", () => { + // cspell:disable-next-line expect(countMatchesInString("abcbd", "b")).toEqual(2); }); From c7da2f8148c59c46a9834baef391599b1f201685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 13 Nov 2024 15:55:18 +0200 Subject: [PATCH 06/22] cspell updates --- .github/workflows/cspell.yaml | 4 ++-- common/autoinstallers/rush-cspell/package.json | 8 ++++++++ .../autoinstallers/rush-cspell/pnpm-lock.yaml | 17 +++++++++++++++++ common/config/rush/command-line.json | 1 + 4 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 common/autoinstallers/rush-cspell/package.json create mode 100644 common/autoinstallers/rush-cspell/pnpm-lock.yaml diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index c8971c6d3f2..daf7e310122 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -29,5 +29,5 @@ jobs: - name: Rush install run: node common/scripts/install-run-rush.js install - - name: Run cSpell - run: npx cspell lint "**" --gitignore + - name: Rush cspell + run: rush cspell diff --git a/common/autoinstallers/rush-cspell/package.json b/common/autoinstallers/rush-cspell/package.json new file mode 100644 index 00000000000..f347b7377cc --- /dev/null +++ b/common/autoinstallers/rush-cspell/package.json @@ -0,0 +1,8 @@ +{ + "name": "rush-cspell", + "version": "1.0.0", + "private": true, + "dependencies": { + "cspell": "^6.0.0" + } +} diff --git a/common/autoinstallers/rush-cspell/pnpm-lock.yaml b/common/autoinstallers/rush-cspell/pnpm-lock.yaml new file mode 100644 index 00000000000..d0698fcbe75 --- /dev/null +++ b/common/autoinstallers/rush-cspell/pnpm-lock.yaml @@ -0,0 +1,17 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +dependencies: + cspell: + specifier: ^8.16.0 + version: 8.16.0 + +packages: + + cspell@8.16.0: + resolution: {integrity: sha1-GJfRI/iFQwS8hKwzJZDHMOk8USM=} + engines: {node: '>=18'} + hasBin: true diff --git a/common/config/rush/command-line.json b/common/config/rush/command-line.json index 5f8b386b868..6b40c14bc48 100644 --- a/common/config/rush/command-line.json +++ b/common/config/rush/command-line.json @@ -141,6 +141,7 @@ "commandKind": "global", "summary": "Runs cSpell for the entire monorepo.", "safeForSimultaneousRushProcesses": true, + "autoinstallerName": "rush-cspell", "shellCommand": "cspell lint \"**\" --gitignore" } ] From c382617eb35d0fe7fc9eebe1652ca00e1df2b818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 13 Nov 2024 16:00:10 +0200 Subject: [PATCH 07/22] updated scr --- .github/workflows/cspell.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index daf7e310122..d82a9bff3dd 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -30,4 +30,4 @@ jobs: run: node common/scripts/install-run-rush.js install - name: Rush cspell - run: rush cspell + run: rush cspell lint "**" --gitignore From 380089b1c5cbba565e8b2fbd3987bb2fbf76bc97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 13 Nov 2024 16:04:07 +0200 Subject: [PATCH 08/22] fix --- .github/workflows/cspell.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index d82a9bff3dd..7b34a13bdb0 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -30,4 +30,4 @@ jobs: run: node common/scripts/install-run-rush.js install - name: Rush cspell - run: rush cspell lint "**" --gitignore + run: cspell lint "**" --gitignore From 64567fc32256bb5e9552b9ad64c296b3d23a62d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 13 Nov 2024 16:07:15 +0200 Subject: [PATCH 09/22] done --- .github/workflows/cspell.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index 7b34a13bdb0..c5efde02539 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -30,4 +30,4 @@ jobs: run: node common/scripts/install-run-rush.js install - name: Rush cspell - run: cspell lint "**" --gitignore + run: node common/scripts/install-run-rush.js cspell From 2f332e03a50314291d904be3a85ffdcbb9b32216 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 13 Nov 2024 16:08:52 +0200 Subject: [PATCH 10/22] fixed package json --- common/autoinstallers/rush-cspell/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/autoinstallers/rush-cspell/package.json b/common/autoinstallers/rush-cspell/package.json index f347b7377cc..c00d1cc8c22 100644 --- a/common/autoinstallers/rush-cspell/package.json +++ b/common/autoinstallers/rush-cspell/package.json @@ -3,6 +3,6 @@ "version": "1.0.0", "private": true, "dependencies": { - "cspell": "^6.0.0" + "cspell": "^8.16.0" } } From a83804c2c5da7a0eacd21bc133c86393393f5f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 13 Nov 2024 16:11:05 +0200 Subject: [PATCH 11/22] yea --- common/autoinstallers/rush-cspell/pnpm-lock.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/autoinstallers/rush-cspell/pnpm-lock.yaml b/common/autoinstallers/rush-cspell/pnpm-lock.yaml index d0698fcbe75..9d6234f441d 100644 --- a/common/autoinstallers/rush-cspell/pnpm-lock.yaml +++ b/common/autoinstallers/rush-cspell/pnpm-lock.yaml @@ -11,7 +11,7 @@ dependencies: packages: - cspell@8.16.0: + /cspell@8.16.0: resolution: {integrity: sha1-GJfRI/iFQwS8hKwzJZDHMOk8USM=} engines: {node: '>=18'} hasBin: true From 12c66725d3e0a1653ab287fa359c0256c8828092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 13 Nov 2024 16:20:36 +0200 Subject: [PATCH 12/22] update lock file --- .../autoinstallers/rush-cspell/pnpm-lock.yaml | 857 +++++++++++++++++- 1 file changed, 851 insertions(+), 6 deletions(-) diff --git a/common/autoinstallers/rush-cspell/pnpm-lock.yaml b/common/autoinstallers/rush-cspell/pnpm-lock.yaml index 9d6234f441d..abafa2ec1c5 100644 --- a/common/autoinstallers/rush-cspell/pnpm-lock.yaml +++ b/common/autoinstallers/rush-cspell/pnpm-lock.yaml @@ -1,17 +1,862 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false -dependencies: - cspell: - specifier: ^8.16.0 - version: 8.16.0 +importers: + + .: + dependencies: + cspell: + specifier: ^8.16.0 + version: 8.16.0 packages: - /cspell@8.16.0: + '@cspell/cspell-bundled-dicts@8.16.0': + resolution: {integrity: sha1-+CdJkh4+EYHilWcPF8ooRTzdwjg=} + engines: {node: '>=18'} + + '@cspell/cspell-json-reporter@8.16.0': + resolution: {integrity: sha1-2D8JqLpEZ9siwM2kyluiCj4gzwA=} + engines: {node: '>=18'} + + '@cspell/cspell-pipe@8.16.0': + resolution: {integrity: sha1-No3F3k6kgH7BCZYgRd4fetnA28M=} + engines: {node: '>=18'} + + '@cspell/cspell-resolver@8.16.0': + resolution: {integrity: sha1-A2AnDnvrF9y337/2r37TEOGqzfw=} + engines: {node: '>=18'} + + '@cspell/cspell-service-bus@8.16.0': + resolution: {integrity: sha1-9V3sBpsu2fIBfGtof+YojtRzCXw=} + engines: {node: '>=18'} + + '@cspell/cspell-types@8.16.0': + resolution: {integrity: sha1-IrZBUS62szt5spQNEnPfC7VHi6g=} + engines: {node: '>=18'} + + '@cspell/dict-ada@4.0.5': + resolution: {integrity: sha1-wUquL6rsutLZnw1wHkcApIxo72A=} + + '@cspell/dict-al@1.0.3': + resolution: {integrity: sha1-CeKItatWsSbc6JXTMB+vfA3XMtY=} + + '@cspell/dict-aws@4.0.7': + resolution: {integrity: sha1-+W87cM1SoluJXrCOKX3lpcw/xbY=} + + '@cspell/dict-bash@4.1.8': + resolution: {integrity: sha1-JtyJjgbt3qBpzxrUde4OhnyJ5jI=} + + '@cspell/dict-companies@3.1.7': + resolution: {integrity: sha1-yavW9Sk/EDBi9U3eAfK+6TkYn3k=} + + '@cspell/dict-cpp@6.0.2': + resolution: {integrity: sha1-5FSe4b30tkAsC5eOud096sDrBd8=} + + '@cspell/dict-cryptocurrencies@5.0.3': + resolution: {integrity: sha1-UC+f/8soNaM3lmjd69xIdnjOYgc=} + + '@cspell/dict-csharp@4.0.5': + resolution: {integrity: sha1-xnfFC+Ccpbs6LMC+FfPNBRQf0vc=} + + '@cspell/dict-css@4.0.16': + resolution: {integrity: sha1-t7h7XqDxFXsCMgW9sABwp9Ix42c=} + + '@cspell/dict-dart@2.2.4': + resolution: {integrity: sha1-i4dxYczcZc6tkSt0K3GqVQmcFwY=} + + '@cspell/dict-data-science@2.0.5': + resolution: {integrity: sha1-gW6bOUwqQj0Uzcml3l1vxhQdOQA=} + + '@cspell/dict-django@4.1.3': + resolution: {integrity: sha1-oCpKnvjJ9HNE8tSgw5ZLy2IGnvU=} + + '@cspell/dict-docker@1.1.11': + resolution: {integrity: sha1-b86G622G1z934Y0+e5dHutPKmN4=} + + '@cspell/dict-dotnet@5.0.8': + resolution: {integrity: sha1-ihEMowKUYCXgJzqZQAeUg+wzqIo=} + + '@cspell/dict-elixir@4.0.6': + resolution: {integrity: sha1-PYllxVjYr9GQNW6akAsCxUZ0H+s=} + + '@cspell/dict-en-common-misspellings@2.0.7': + resolution: {integrity: sha1-YoYcyegTyUfr1xx6UPxyB2e0tUM=} + + '@cspell/dict-en-gb@1.1.33': + resolution: {integrity: sha1-fx/ZD8Nkpct3ERtUOPyfz5zG2g4=} + + '@cspell/dict-en_us@4.3.27': + resolution: {integrity: sha1-1x+r3AWNVtJPgHg4QDnTN1NDyfQ=} + + '@cspell/dict-filetypes@3.0.8': + resolution: {integrity: sha1-AW1SPKLDTeqXLqDKkxJVhoNI2Bo=} + + '@cspell/dict-flutter@1.0.3': + resolution: {integrity: sha1-I+VSIJqyI4cz0wyj8qFBNZdWr1E=} + + '@cspell/dict-fonts@4.0.3': + resolution: {integrity: sha1-q/V4wQoueyvY9DdAAmd2JSiFYNk=} + + '@cspell/dict-fsharp@1.0.4': + resolution: {integrity: sha1-GacmOmHKic0+ycF1N+QkkHuB7zg=} + + '@cspell/dict-fullstack@3.2.3': + resolution: {integrity: sha1-9v/3Tv8AxnWculEBaKytoGGQBMw=} + + '@cspell/dict-gaming-terms@1.0.8': + resolution: {integrity: sha1-+4pzf2Hnz1YLTeeyqurpUvJVA5g=} + + '@cspell/dict-git@3.0.3': + resolution: {integrity: sha1-OjgFq5kCv/ySVexI9kgUW5V+sws=} + + '@cspell/dict-golang@6.0.16': + resolution: {integrity: sha1-skeoAUBPmmXnyGdIk721qtQjU6I=} + + '@cspell/dict-google@1.0.4': + resolution: {integrity: sha1-4Vp+ot7nOAAjGoGEClnTtQ1JNG8=} + + '@cspell/dict-haskell@4.0.4': + resolution: {integrity: sha1-N+nLmn9b4zeml7z/0KDSXoCqtQ0=} + + '@cspell/dict-html-symbol-entities@4.0.3': + resolution: {integrity: sha1-vyiHAgykd0QT2LHyfJtoJLqJ6e8=} + + '@cspell/dict-html@4.0.10': + resolution: {integrity: sha1-e1NrKtyktY7ZJ1LJ08f/xyTdWZE=} + + '@cspell/dict-java@5.0.10': + resolution: {integrity: sha1-5jg8pkUEa58FoEosLoWPzIDG/GM=} + + '@cspell/dict-julia@1.0.4': + resolution: {integrity: sha1-5HjCDXQs1oV7beQdxhqSA22vtLw=} + + '@cspell/dict-k8s@1.0.9': + resolution: {integrity: sha1-6TkqACeXxn/8PpaJMVbMFa83dNE=} + + '@cspell/dict-latex@4.0.3': + resolution: {integrity: sha1-oSVMfZw6LXDNY5Gp8vdpRDGxsss=} + + '@cspell/dict-lorem-ipsum@4.0.3': + resolution: {integrity: sha1-xfxjHZNPHa+LEMiLeVJ4cBokaew=} + + '@cspell/dict-lua@4.0.6': + resolution: {integrity: sha1-feQSv66teURF4m1WauwiLiCtabo=} + + '@cspell/dict-makefile@1.0.3': + resolution: {integrity: sha1-CNM0m/fL2PXaz4ZB89NQksoLizg=} + + '@cspell/dict-markdown@2.0.7': + resolution: {integrity: sha1-Fdb57ta9GzOSG0MyQm/zh5YRY/E=} + peerDependencies: + '@cspell/dict-css': ^4.0.16 + '@cspell/dict-html': ^4.0.10 + '@cspell/dict-html-symbol-entities': ^4.0.3 + '@cspell/dict-typescript': ^3.1.11 + + '@cspell/dict-monkeyc@1.0.9': + resolution: {integrity: sha1-WLX28V/HwRzg7v/QdC+6Szn8C4s=} + + '@cspell/dict-node@5.0.5': + resolution: {integrity: sha1-EWU2EuvdgzIIQy6LPL5hvW3TXcM=} + + '@cspell/dict-npm@5.1.12': + resolution: {integrity: sha1-NCtyjWtiTw+Gq3OzAOFITHqGPlU=} + + '@cspell/dict-php@4.0.13': + resolution: {integrity: sha1-hvHm+yF0srD6ASuvhsRIsnMPBPk=} + + '@cspell/dict-powershell@5.0.13': + resolution: {integrity: sha1-9VeqBO6b2k/gkTCKC8rqCe0S+nY=} + + '@cspell/dict-public-licenses@2.0.11': + resolution: {integrity: sha1-N1UMTgzURZkcq6Uov0uljOepNcM=} + + '@cspell/dict-python@4.2.12': + resolution: {integrity: sha1-6mKYu3KmvPLBiNXFUULgr6uKbBw=} + + '@cspell/dict-r@2.0.4': + resolution: {integrity: sha1-MbWr2RzBKuv//d5L5NKQJmh4kxE=} + + '@cspell/dict-ruby@5.0.7': + resolution: {integrity: sha1-NZOpVbqv/jxdKPsXi3L9+Tx+7HE=} + + '@cspell/dict-rust@4.0.10': + resolution: {integrity: sha1-iubq8xoOvOncj9jdaOWSXh1SkO4=} + + '@cspell/dict-scala@5.0.6': + resolution: {integrity: sha1-XpJd7y/m3CfuKtHEUpQcPWeQ+20=} + + '@cspell/dict-software-terms@4.1.15': + resolution: {integrity: sha1-ShWMJ9DFw2nDz9jzYVDxEHQ9jXw=} + + '@cspell/dict-sql@2.1.8': + resolution: {integrity: sha1-RepTs+V/0sxfg59JtkSqdD2sSZA=} + + '@cspell/dict-svelte@1.0.5': + resolution: {integrity: sha1-CXUuAf9mZ+c3Vm2d/HBMjcyaZJI=} + + '@cspell/dict-swift@2.0.4': + resolution: {integrity: sha1-vBlSJBjtaM+RRza2EsTk/rvwfo0=} + + '@cspell/dict-terraform@1.0.6': + resolution: {integrity: sha1-9ntzY9DPCMgggYmAu+jJJzMq0Lg=} + + '@cspell/dict-typescript@3.1.11': + resolution: {integrity: sha1-QFhvE7Aze9nLqVjgZhs1iIWAskk=} + + '@cspell/dict-vue@3.0.3': + resolution: {integrity: sha1-KVwoj2/TY4eYmCIyAuw74EhmO5g=} + + '@cspell/dynamic-import@8.16.0': + resolution: {integrity: sha1-vLeFM1/m8ipc9meApa3mFIPafzI=} + engines: {node: '>=18.0'} + + '@cspell/filetypes@8.16.0': + resolution: {integrity: sha1-exFjlGzRFaF/OC1jMqav7ZvCNzQ=} + engines: {node: '>=18'} + + '@cspell/strong-weak-map@8.16.0': + resolution: {integrity: sha1-YI7FA20sTmCGgj7tdYG7r3ZHgfQ=} + engines: {node: '>=18'} + + '@cspell/url@8.16.0': + resolution: {integrity: sha1-HEJt0ZtSvJtfcA/yigIhV1JWNAo=} + engines: {node: '>=18.0'} + + array-timsort@1.0.3: + resolution: {integrity: sha1-PJ5BmeVPsrnD/ll2OWohYU7w2SY=} + + braces@3.0.3: + resolution: {integrity: sha1-SQMy9AkZRSJy1VqEgK3AxEE1h4k=} + engines: {node: '>=8'} + + callsites@3.1.0: + resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=} + engines: {node: '>=6'} + + chalk-template@1.1.0: + resolution: {integrity: sha1-/8Vdtt10XpOUuFMnyKyEZu23p7E=} + engines: {node: '>=14.16'} + + chalk@5.3.0: + resolution: {integrity: sha1-Z8IKfr73Dn85cKAfkPohDLaGA4U=} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + clear-module@4.1.2: + resolution: {integrity: sha1-WlilyfjczzY1Ra1yhMrTyIc1KoA=} + engines: {node: '>=8'} + + commander@12.1.0: + resolution: {integrity: sha1-AUI7NvUBJZ/arE0OTWDJbJkVhdM=} + engines: {node: '>=18'} + + comment-json@4.2.5: + resolution: {integrity: sha1-SC4IX3WcJwS2C8b5f1W4wBvEHnA=} + engines: {node: '>= 6'} + + core-util-is@1.0.3: + resolution: {integrity: sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=} + + cspell-config-lib@8.16.0: + resolution: {integrity: sha1-PaMbgneG+D3VhOVd+efvQPMszyU=} + engines: {node: '>=18'} + + cspell-dictionary@8.16.0: + resolution: {integrity: sha1-Eb30FwJDLvi821fHGBqF88wGk1U=} + engines: {node: '>=18'} + + cspell-gitignore@8.16.0: + resolution: {integrity: sha1-/WTRijEBcFuc+bT9WzVSLBp14HE=} + engines: {node: '>=18'} + hasBin: true + + cspell-glob@8.16.0: + resolution: {integrity: sha1-Twjt9U/NqnHcg1JBaWCq1fiEpC8=} + engines: {node: '>=18'} + + cspell-grammar@8.16.0: + resolution: {integrity: sha1-i+A+YX9Vlif9Oegt14EmNqBU79c=} + engines: {node: '>=18'} + hasBin: true + + cspell-io@8.16.0: + resolution: {integrity: sha1-8yxgotJyqIiDp8iDvh49i3vo/mQ=} + engines: {node: '>=18'} + + cspell-lib@8.16.0: + resolution: {integrity: sha1-JoJPfAlvuhzRZytQaWBT8D2jQus=} + engines: {node: '>=18'} + + cspell-trie-lib@8.16.0: + resolution: {integrity: sha1-R8GpxSHDw8q83IVny9YBjSlyi/E=} + engines: {node: '>=18'} + + cspell@8.16.0: resolution: {integrity: sha1-GJfRI/iFQwS8hKwzJZDHMOk8USM=} engines: {node: '>=18'} hasBin: true + + env-paths@3.0.0: + resolution: {integrity: sha1-Lx6Jwvbb00COGxcR3YLWLjF/WNo=} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + esprima@4.0.1: + resolution: {integrity: sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=} + engines: {node: '>=4'} + hasBin: true + + fast-equals@5.0.1: + resolution: {integrity: sha1-pO7+PF0cDQIa7tC8ELpeDBLuQF0=} + engines: {node: '>=6.0.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=} + + fdir@6.4.2: + resolution: {integrity: sha1-3ap84YMbFhvDZXu5nLNuFiJwJok=} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + file-entry-cache@9.1.0: + resolution: {integrity: sha1-LmatmM6T9JrtGxeMV7C1dBWR4HU=} + engines: {node: '>=18'} + + fill-range@7.1.1: + resolution: {integrity: sha1-RCZdPKwH4+p9wkdRY4BkN1SgUpI=} + engines: {node: '>=8'} + + find-up-simple@1.0.0: + resolution: {integrity: sha1-IdA1/en9vVbI9NL2PzL9k6HPw2g=} + engines: {node: '>=18'} + + flat-cache@5.0.0: + resolution: {integrity: sha1-JsTaew8oi0CLsrUGsstmwkDd8GI=} + engines: {node: '>=18'} + + flatted@3.3.1: + resolution: {integrity: sha1-IdtHBymmc01JlwAvQ5yzCJh/Vno=} + + gensequence@7.0.0: + resolution: {integrity: sha1-u2rt7I/2ZeOmxC+SgjEh46bqdxg=} + engines: {node: '>=18'} + + get-stdin@9.0.0: + resolution: {integrity: sha1-OYP/guA9VvGy6g0+YDJfOdcDpXU=} + engines: {node: '>=12'} + + global-directory@4.0.1: + resolution: {integrity: sha1-TXrHz9LLc/MExTuIEIkXSN9eNh4=} + engines: {node: '>=18'} + + has-own-prop@2.0.0: + resolution: {integrity: sha1-8PldWPZYBPXSGNsyVju4W44EF68=} + engines: {node: '>=8'} + + import-fresh@3.3.0: + resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=} + engines: {node: '>=6'} + + import-meta-resolve@4.1.0: + resolution: {integrity: sha1-+duL6tn6+mGtuBHbd6K/IsU5lwY=} + + ini@4.1.1: + resolution: {integrity: sha1-2Vs9hDsekG5W1nR9VEeQT/UM56E=} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + is-number@7.0.0: + resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=} + engines: {node: '>=0.12.0'} + + json-buffer@3.0.1: + resolution: {integrity: sha1-kziAKjDTtmBfvgYT4JQAjKjAWhM=} + + keyv@4.5.4: + resolution: {integrity: sha1-qHmpnilFL5QkOfKkBeOvizHU3pM=} + + micromatch@4.0.8: + resolution: {integrity: sha1-1m+hjzpHB2eJMgubGvMr2G2fogI=} + engines: {node: '>=8.6'} + + parent-module@1.0.1: + resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=} + engines: {node: '>=6'} + + parent-module@2.0.0: + resolution: {integrity: sha1-+nH4j/GlDCfhXY/3Tg46lSO/hwg=} + engines: {node: '>=8'} + + picomatch@2.3.1: + resolution: {integrity: sha1-O6ODNzNkbZ0+SZWUbBNlpn+wekI=} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha1-d8dCkx6PO4gglGx2zQwfE3MNHas=} + engines: {node: '>=12'} + + repeat-string@1.6.1: + resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} + engines: {node: '>=0.10'} + + resolve-from@4.0.0: + resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=} + engines: {node: '>=8'} + + semver@7.6.3: + resolution: {integrity: sha1-mA97VVC8F1+03AlAMIVif56zMUM=} + engines: {node: '>=10'} + hasBin: true + + tinyglobby@0.2.10: + resolution: {integrity: sha1-5xLPLcm5Wh9cW70VlyDhWDOXeg8=} + engines: {node: '>=12.0.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=} + engines: {node: '>=8.0'} + + vscode-languageserver-textdocument@1.0.12: + resolution: {integrity: sha1-RX7gQnGrOJmKCTxowjQvU/bkpjE=} + + vscode-uri@3.0.8: + resolution: {integrity: sha1-F3CTjT5yWIZZoXLQ/UZCeACD/58=} + + xdg-basedir@5.1.0: + resolution: {integrity: sha1-HvuhlCXnO+G8byps61Kj0siEwMk=} + engines: {node: '>=12'} + + yaml@2.6.0: + resolution: {integrity: sha1-FAWa2dCxaA0PBNOmD+APOoVzA8M=} + engines: {node: '>= 14'} + hasBin: true + +snapshots: + + '@cspell/cspell-bundled-dicts@8.16.0': + dependencies: + '@cspell/dict-ada': 4.0.5 + '@cspell/dict-al': 1.0.3 + '@cspell/dict-aws': 4.0.7 + '@cspell/dict-bash': 4.1.8 + '@cspell/dict-companies': 3.1.7 + '@cspell/dict-cpp': 6.0.2 + '@cspell/dict-cryptocurrencies': 5.0.3 + '@cspell/dict-csharp': 4.0.5 + '@cspell/dict-css': 4.0.16 + '@cspell/dict-dart': 2.2.4 + '@cspell/dict-django': 4.1.3 + '@cspell/dict-docker': 1.1.11 + '@cspell/dict-dotnet': 5.0.8 + '@cspell/dict-elixir': 4.0.6 + '@cspell/dict-en-common-misspellings': 2.0.7 + '@cspell/dict-en-gb': 1.1.33 + '@cspell/dict-en_us': 4.3.27 + '@cspell/dict-filetypes': 3.0.8 + '@cspell/dict-flutter': 1.0.3 + '@cspell/dict-fonts': 4.0.3 + '@cspell/dict-fsharp': 1.0.4 + '@cspell/dict-fullstack': 3.2.3 + '@cspell/dict-gaming-terms': 1.0.8 + '@cspell/dict-git': 3.0.3 + '@cspell/dict-golang': 6.0.16 + '@cspell/dict-google': 1.0.4 + '@cspell/dict-haskell': 4.0.4 + '@cspell/dict-html': 4.0.10 + '@cspell/dict-html-symbol-entities': 4.0.3 + '@cspell/dict-java': 5.0.10 + '@cspell/dict-julia': 1.0.4 + '@cspell/dict-k8s': 1.0.9 + '@cspell/dict-latex': 4.0.3 + '@cspell/dict-lorem-ipsum': 4.0.3 + '@cspell/dict-lua': 4.0.6 + '@cspell/dict-makefile': 1.0.3 + '@cspell/dict-markdown': 2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11) + '@cspell/dict-monkeyc': 1.0.9 + '@cspell/dict-node': 5.0.5 + '@cspell/dict-npm': 5.1.12 + '@cspell/dict-php': 4.0.13 + '@cspell/dict-powershell': 5.0.13 + '@cspell/dict-public-licenses': 2.0.11 + '@cspell/dict-python': 4.2.12 + '@cspell/dict-r': 2.0.4 + '@cspell/dict-ruby': 5.0.7 + '@cspell/dict-rust': 4.0.10 + '@cspell/dict-scala': 5.0.6 + '@cspell/dict-software-terms': 4.1.15 + '@cspell/dict-sql': 2.1.8 + '@cspell/dict-svelte': 1.0.5 + '@cspell/dict-swift': 2.0.4 + '@cspell/dict-terraform': 1.0.6 + '@cspell/dict-typescript': 3.1.11 + '@cspell/dict-vue': 3.0.3 + + '@cspell/cspell-json-reporter@8.16.0': + dependencies: + '@cspell/cspell-types': 8.16.0 + + '@cspell/cspell-pipe@8.16.0': {} + + '@cspell/cspell-resolver@8.16.0': + dependencies: + global-directory: 4.0.1 + + '@cspell/cspell-service-bus@8.16.0': {} + + '@cspell/cspell-types@8.16.0': {} + + '@cspell/dict-ada@4.0.5': {} + + '@cspell/dict-al@1.0.3': {} + + '@cspell/dict-aws@4.0.7': {} + + '@cspell/dict-bash@4.1.8': {} + + '@cspell/dict-companies@3.1.7': {} + + '@cspell/dict-cpp@6.0.2': {} + + '@cspell/dict-cryptocurrencies@5.0.3': {} + + '@cspell/dict-csharp@4.0.5': {} + + '@cspell/dict-css@4.0.16': {} + + '@cspell/dict-dart@2.2.4': {} + + '@cspell/dict-data-science@2.0.5': {} + + '@cspell/dict-django@4.1.3': {} + + '@cspell/dict-docker@1.1.11': {} + + '@cspell/dict-dotnet@5.0.8': {} + + '@cspell/dict-elixir@4.0.6': {} + + '@cspell/dict-en-common-misspellings@2.0.7': {} + + '@cspell/dict-en-gb@1.1.33': {} + + '@cspell/dict-en_us@4.3.27': {} + + '@cspell/dict-filetypes@3.0.8': {} + + '@cspell/dict-flutter@1.0.3': {} + + '@cspell/dict-fonts@4.0.3': {} + + '@cspell/dict-fsharp@1.0.4': {} + + '@cspell/dict-fullstack@3.2.3': {} + + '@cspell/dict-gaming-terms@1.0.8': {} + + '@cspell/dict-git@3.0.3': {} + + '@cspell/dict-golang@6.0.16': {} + + '@cspell/dict-google@1.0.4': {} + + '@cspell/dict-haskell@4.0.4': {} + + '@cspell/dict-html-symbol-entities@4.0.3': {} + + '@cspell/dict-html@4.0.10': {} + + '@cspell/dict-java@5.0.10': {} + + '@cspell/dict-julia@1.0.4': {} + + '@cspell/dict-k8s@1.0.9': {} + + '@cspell/dict-latex@4.0.3': {} + + '@cspell/dict-lorem-ipsum@4.0.3': {} + + '@cspell/dict-lua@4.0.6': {} + + '@cspell/dict-makefile@1.0.3': {} + + '@cspell/dict-markdown@2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11)': + dependencies: + '@cspell/dict-css': 4.0.16 + '@cspell/dict-html': 4.0.10 + '@cspell/dict-html-symbol-entities': 4.0.3 + '@cspell/dict-typescript': 3.1.11 + + '@cspell/dict-monkeyc@1.0.9': {} + + '@cspell/dict-node@5.0.5': {} + + '@cspell/dict-npm@5.1.12': {} + + '@cspell/dict-php@4.0.13': {} + + '@cspell/dict-powershell@5.0.13': {} + + '@cspell/dict-public-licenses@2.0.11': {} + + '@cspell/dict-python@4.2.12': + dependencies: + '@cspell/dict-data-science': 2.0.5 + + '@cspell/dict-r@2.0.4': {} + + '@cspell/dict-ruby@5.0.7': {} + + '@cspell/dict-rust@4.0.10': {} + + '@cspell/dict-scala@5.0.6': {} + + '@cspell/dict-software-terms@4.1.15': {} + + '@cspell/dict-sql@2.1.8': {} + + '@cspell/dict-svelte@1.0.5': {} + + '@cspell/dict-swift@2.0.4': {} + + '@cspell/dict-terraform@1.0.6': {} + + '@cspell/dict-typescript@3.1.11': {} + + '@cspell/dict-vue@3.0.3': {} + + '@cspell/dynamic-import@8.16.0': + dependencies: + import-meta-resolve: 4.1.0 + + '@cspell/filetypes@8.16.0': {} + + '@cspell/strong-weak-map@8.16.0': {} + + '@cspell/url@8.16.0': {} + + array-timsort@1.0.3: {} + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + callsites@3.1.0: {} + + chalk-template@1.1.0: + dependencies: + chalk: 5.3.0 + + chalk@5.3.0: {} + + clear-module@4.1.2: + dependencies: + parent-module: 2.0.0 + resolve-from: 5.0.0 + + commander@12.1.0: {} + + comment-json@4.2.5: + dependencies: + array-timsort: 1.0.3 + core-util-is: 1.0.3 + esprima: 4.0.1 + has-own-prop: 2.0.0 + repeat-string: 1.6.1 + + core-util-is@1.0.3: {} + + cspell-config-lib@8.16.0: + dependencies: + '@cspell/cspell-types': 8.16.0 + comment-json: 4.2.5 + yaml: 2.6.0 + + cspell-dictionary@8.16.0: + dependencies: + '@cspell/cspell-pipe': 8.16.0 + '@cspell/cspell-types': 8.16.0 + cspell-trie-lib: 8.16.0 + fast-equals: 5.0.1 + + cspell-gitignore@8.16.0: + dependencies: + '@cspell/url': 8.16.0 + cspell-glob: 8.16.0 + cspell-io: 8.16.0 + find-up-simple: 1.0.0 + + cspell-glob@8.16.0: + dependencies: + '@cspell/url': 8.16.0 + micromatch: 4.0.8 + + cspell-grammar@8.16.0: + dependencies: + '@cspell/cspell-pipe': 8.16.0 + '@cspell/cspell-types': 8.16.0 + + cspell-io@8.16.0: + dependencies: + '@cspell/cspell-service-bus': 8.16.0 + '@cspell/url': 8.16.0 + + cspell-lib@8.16.0: + dependencies: + '@cspell/cspell-bundled-dicts': 8.16.0 + '@cspell/cspell-pipe': 8.16.0 + '@cspell/cspell-resolver': 8.16.0 + '@cspell/cspell-types': 8.16.0 + '@cspell/dynamic-import': 8.16.0 + '@cspell/filetypes': 8.16.0 + '@cspell/strong-weak-map': 8.16.0 + '@cspell/url': 8.16.0 + clear-module: 4.1.2 + comment-json: 4.2.5 + cspell-config-lib: 8.16.0 + cspell-dictionary: 8.16.0 + cspell-glob: 8.16.0 + cspell-grammar: 8.16.0 + cspell-io: 8.16.0 + cspell-trie-lib: 8.16.0 + env-paths: 3.0.0 + fast-equals: 5.0.1 + gensequence: 7.0.0 + import-fresh: 3.3.0 + resolve-from: 5.0.0 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + xdg-basedir: 5.1.0 + + cspell-trie-lib@8.16.0: + dependencies: + '@cspell/cspell-pipe': 8.16.0 + '@cspell/cspell-types': 8.16.0 + gensequence: 7.0.0 + + cspell@8.16.0: + dependencies: + '@cspell/cspell-json-reporter': 8.16.0 + '@cspell/cspell-pipe': 8.16.0 + '@cspell/cspell-types': 8.16.0 + '@cspell/dynamic-import': 8.16.0 + '@cspell/url': 8.16.0 + chalk: 5.3.0 + chalk-template: 1.1.0 + commander: 12.1.0 + cspell-dictionary: 8.16.0 + cspell-gitignore: 8.16.0 + cspell-glob: 8.16.0 + cspell-io: 8.16.0 + cspell-lib: 8.16.0 + fast-json-stable-stringify: 2.1.0 + file-entry-cache: 9.1.0 + get-stdin: 9.0.0 + semver: 7.6.3 + tinyglobby: 0.2.10 + + env-paths@3.0.0: {} + + esprima@4.0.1: {} + + fast-equals@5.0.1: {} + + fast-json-stable-stringify@2.1.0: {} + + fdir@6.4.2(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + file-entry-cache@9.1.0: + dependencies: + flat-cache: 5.0.0 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up-simple@1.0.0: {} + + flat-cache@5.0.0: + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + + flatted@3.3.1: {} + + gensequence@7.0.0: {} + + get-stdin@9.0.0: {} + + global-directory@4.0.1: + dependencies: + ini: 4.1.1 + + has-own-prop@2.0.0: {} + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + import-meta-resolve@4.1.0: {} + + ini@4.1.1: {} + + is-number@7.0.0: {} + + json-buffer@3.0.1: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parent-module@2.0.0: + dependencies: + callsites: 3.1.0 + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + repeat-string@1.6.1: {} + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + semver@7.6.3: {} + + tinyglobby@0.2.10: + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + vscode-languageserver-textdocument@1.0.12: {} + + vscode-uri@3.0.8: {} + + xdg-basedir@5.1.0: {} + + yaml@2.6.0: {} From d5bc63310f5c1a02acb6da6a16447bac5d1f0995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 19 Nov 2024 11:31:11 +0200 Subject: [PATCH 13/22] Changed yaml file to 6.0 --- common/autoinstallers/rush-cspell/pnpm-lock.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/common/autoinstallers/rush-cspell/pnpm-lock.yaml b/common/autoinstallers/rush-cspell/pnpm-lock.yaml index abafa2ec1c5..2ede4ac2ec1 100644 --- a/common/autoinstallers/rush-cspell/pnpm-lock.yaml +++ b/common/autoinstallers/rush-cspell/pnpm-lock.yaml @@ -1,16 +1,13 @@ -lockfileVersion: '9.0' +lockfileVersion: '6.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false -importers: - - .: - dependencies: - cspell: - specifier: ^8.16.0 - version: 8.16.0 +dependencies: + cspell: + specifier: ^8.16.0 + version: 8.16.0 packages: From fa2df4b5a4cf4c2de8cb0fbdd389f565be6c37c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 19 Nov 2024 11:41:04 +0200 Subject: [PATCH 14/22] Fixed the file --- .../autoinstallers/rush-cspell/pnpm-lock.yaml | 979 ++++++++---------- 1 file changed, 429 insertions(+), 550 deletions(-) diff --git a/common/autoinstallers/rush-cspell/pnpm-lock.yaml b/common/autoinstallers/rush-cspell/pnpm-lock.yaml index 2ede4ac2ec1..e682f448f61 100644 --- a/common/autoinstallers/rush-cspell/pnpm-lock.yaml +++ b/common/autoinstallers/rush-cspell/pnpm-lock.yaml @@ -11,435 +11,9 @@ dependencies: packages: - '@cspell/cspell-bundled-dicts@8.16.0': - resolution: {integrity: sha1-+CdJkh4+EYHilWcPF8ooRTzdwjg=} + /@cspell/cspell-bundled-dicts@8.16.0: + resolution: {integrity: sha512-R0Eqq5kTZnmZ0elih5uY3TWjMqqAeMl7ciU7maUs+m1FNjCEdJXtJ9wrQxNgjmXi0tX8cvahZRO3O558tEz/KA==} engines: {node: '>=18'} - - '@cspell/cspell-json-reporter@8.16.0': - resolution: {integrity: sha1-2D8JqLpEZ9siwM2kyluiCj4gzwA=} - engines: {node: '>=18'} - - '@cspell/cspell-pipe@8.16.0': - resolution: {integrity: sha1-No3F3k6kgH7BCZYgRd4fetnA28M=} - engines: {node: '>=18'} - - '@cspell/cspell-resolver@8.16.0': - resolution: {integrity: sha1-A2AnDnvrF9y337/2r37TEOGqzfw=} - engines: {node: '>=18'} - - '@cspell/cspell-service-bus@8.16.0': - resolution: {integrity: sha1-9V3sBpsu2fIBfGtof+YojtRzCXw=} - engines: {node: '>=18'} - - '@cspell/cspell-types@8.16.0': - resolution: {integrity: sha1-IrZBUS62szt5spQNEnPfC7VHi6g=} - engines: {node: '>=18'} - - '@cspell/dict-ada@4.0.5': - resolution: {integrity: sha1-wUquL6rsutLZnw1wHkcApIxo72A=} - - '@cspell/dict-al@1.0.3': - resolution: {integrity: sha1-CeKItatWsSbc6JXTMB+vfA3XMtY=} - - '@cspell/dict-aws@4.0.7': - resolution: {integrity: sha1-+W87cM1SoluJXrCOKX3lpcw/xbY=} - - '@cspell/dict-bash@4.1.8': - resolution: {integrity: sha1-JtyJjgbt3qBpzxrUde4OhnyJ5jI=} - - '@cspell/dict-companies@3.1.7': - resolution: {integrity: sha1-yavW9Sk/EDBi9U3eAfK+6TkYn3k=} - - '@cspell/dict-cpp@6.0.2': - resolution: {integrity: sha1-5FSe4b30tkAsC5eOud096sDrBd8=} - - '@cspell/dict-cryptocurrencies@5.0.3': - resolution: {integrity: sha1-UC+f/8soNaM3lmjd69xIdnjOYgc=} - - '@cspell/dict-csharp@4.0.5': - resolution: {integrity: sha1-xnfFC+Ccpbs6LMC+FfPNBRQf0vc=} - - '@cspell/dict-css@4.0.16': - resolution: {integrity: sha1-t7h7XqDxFXsCMgW9sABwp9Ix42c=} - - '@cspell/dict-dart@2.2.4': - resolution: {integrity: sha1-i4dxYczcZc6tkSt0K3GqVQmcFwY=} - - '@cspell/dict-data-science@2.0.5': - resolution: {integrity: sha1-gW6bOUwqQj0Uzcml3l1vxhQdOQA=} - - '@cspell/dict-django@4.1.3': - resolution: {integrity: sha1-oCpKnvjJ9HNE8tSgw5ZLy2IGnvU=} - - '@cspell/dict-docker@1.1.11': - resolution: {integrity: sha1-b86G622G1z934Y0+e5dHutPKmN4=} - - '@cspell/dict-dotnet@5.0.8': - resolution: {integrity: sha1-ihEMowKUYCXgJzqZQAeUg+wzqIo=} - - '@cspell/dict-elixir@4.0.6': - resolution: {integrity: sha1-PYllxVjYr9GQNW6akAsCxUZ0H+s=} - - '@cspell/dict-en-common-misspellings@2.0.7': - resolution: {integrity: sha1-YoYcyegTyUfr1xx6UPxyB2e0tUM=} - - '@cspell/dict-en-gb@1.1.33': - resolution: {integrity: sha1-fx/ZD8Nkpct3ERtUOPyfz5zG2g4=} - - '@cspell/dict-en_us@4.3.27': - resolution: {integrity: sha1-1x+r3AWNVtJPgHg4QDnTN1NDyfQ=} - - '@cspell/dict-filetypes@3.0.8': - resolution: {integrity: sha1-AW1SPKLDTeqXLqDKkxJVhoNI2Bo=} - - '@cspell/dict-flutter@1.0.3': - resolution: {integrity: sha1-I+VSIJqyI4cz0wyj8qFBNZdWr1E=} - - '@cspell/dict-fonts@4.0.3': - resolution: {integrity: sha1-q/V4wQoueyvY9DdAAmd2JSiFYNk=} - - '@cspell/dict-fsharp@1.0.4': - resolution: {integrity: sha1-GacmOmHKic0+ycF1N+QkkHuB7zg=} - - '@cspell/dict-fullstack@3.2.3': - resolution: {integrity: sha1-9v/3Tv8AxnWculEBaKytoGGQBMw=} - - '@cspell/dict-gaming-terms@1.0.8': - resolution: {integrity: sha1-+4pzf2Hnz1YLTeeyqurpUvJVA5g=} - - '@cspell/dict-git@3.0.3': - resolution: {integrity: sha1-OjgFq5kCv/ySVexI9kgUW5V+sws=} - - '@cspell/dict-golang@6.0.16': - resolution: {integrity: sha1-skeoAUBPmmXnyGdIk721qtQjU6I=} - - '@cspell/dict-google@1.0.4': - resolution: {integrity: sha1-4Vp+ot7nOAAjGoGEClnTtQ1JNG8=} - - '@cspell/dict-haskell@4.0.4': - resolution: {integrity: sha1-N+nLmn9b4zeml7z/0KDSXoCqtQ0=} - - '@cspell/dict-html-symbol-entities@4.0.3': - resolution: {integrity: sha1-vyiHAgykd0QT2LHyfJtoJLqJ6e8=} - - '@cspell/dict-html@4.0.10': - resolution: {integrity: sha1-e1NrKtyktY7ZJ1LJ08f/xyTdWZE=} - - '@cspell/dict-java@5.0.10': - resolution: {integrity: sha1-5jg8pkUEa58FoEosLoWPzIDG/GM=} - - '@cspell/dict-julia@1.0.4': - resolution: {integrity: sha1-5HjCDXQs1oV7beQdxhqSA22vtLw=} - - '@cspell/dict-k8s@1.0.9': - resolution: {integrity: sha1-6TkqACeXxn/8PpaJMVbMFa83dNE=} - - '@cspell/dict-latex@4.0.3': - resolution: {integrity: sha1-oSVMfZw6LXDNY5Gp8vdpRDGxsss=} - - '@cspell/dict-lorem-ipsum@4.0.3': - resolution: {integrity: sha1-xfxjHZNPHa+LEMiLeVJ4cBokaew=} - - '@cspell/dict-lua@4.0.6': - resolution: {integrity: sha1-feQSv66teURF4m1WauwiLiCtabo=} - - '@cspell/dict-makefile@1.0.3': - resolution: {integrity: sha1-CNM0m/fL2PXaz4ZB89NQksoLizg=} - - '@cspell/dict-markdown@2.0.7': - resolution: {integrity: sha1-Fdb57ta9GzOSG0MyQm/zh5YRY/E=} - peerDependencies: - '@cspell/dict-css': ^4.0.16 - '@cspell/dict-html': ^4.0.10 - '@cspell/dict-html-symbol-entities': ^4.0.3 - '@cspell/dict-typescript': ^3.1.11 - - '@cspell/dict-monkeyc@1.0.9': - resolution: {integrity: sha1-WLX28V/HwRzg7v/QdC+6Szn8C4s=} - - '@cspell/dict-node@5.0.5': - resolution: {integrity: sha1-EWU2EuvdgzIIQy6LPL5hvW3TXcM=} - - '@cspell/dict-npm@5.1.12': - resolution: {integrity: sha1-NCtyjWtiTw+Gq3OzAOFITHqGPlU=} - - '@cspell/dict-php@4.0.13': - resolution: {integrity: sha1-hvHm+yF0srD6ASuvhsRIsnMPBPk=} - - '@cspell/dict-powershell@5.0.13': - resolution: {integrity: sha1-9VeqBO6b2k/gkTCKC8rqCe0S+nY=} - - '@cspell/dict-public-licenses@2.0.11': - resolution: {integrity: sha1-N1UMTgzURZkcq6Uov0uljOepNcM=} - - '@cspell/dict-python@4.2.12': - resolution: {integrity: sha1-6mKYu3KmvPLBiNXFUULgr6uKbBw=} - - '@cspell/dict-r@2.0.4': - resolution: {integrity: sha1-MbWr2RzBKuv//d5L5NKQJmh4kxE=} - - '@cspell/dict-ruby@5.0.7': - resolution: {integrity: sha1-NZOpVbqv/jxdKPsXi3L9+Tx+7HE=} - - '@cspell/dict-rust@4.0.10': - resolution: {integrity: sha1-iubq8xoOvOncj9jdaOWSXh1SkO4=} - - '@cspell/dict-scala@5.0.6': - resolution: {integrity: sha1-XpJd7y/m3CfuKtHEUpQcPWeQ+20=} - - '@cspell/dict-software-terms@4.1.15': - resolution: {integrity: sha1-ShWMJ9DFw2nDz9jzYVDxEHQ9jXw=} - - '@cspell/dict-sql@2.1.8': - resolution: {integrity: sha1-RepTs+V/0sxfg59JtkSqdD2sSZA=} - - '@cspell/dict-svelte@1.0.5': - resolution: {integrity: sha1-CXUuAf9mZ+c3Vm2d/HBMjcyaZJI=} - - '@cspell/dict-swift@2.0.4': - resolution: {integrity: sha1-vBlSJBjtaM+RRza2EsTk/rvwfo0=} - - '@cspell/dict-terraform@1.0.6': - resolution: {integrity: sha1-9ntzY9DPCMgggYmAu+jJJzMq0Lg=} - - '@cspell/dict-typescript@3.1.11': - resolution: {integrity: sha1-QFhvE7Aze9nLqVjgZhs1iIWAskk=} - - '@cspell/dict-vue@3.0.3': - resolution: {integrity: sha1-KVwoj2/TY4eYmCIyAuw74EhmO5g=} - - '@cspell/dynamic-import@8.16.0': - resolution: {integrity: sha1-vLeFM1/m8ipc9meApa3mFIPafzI=} - engines: {node: '>=18.0'} - - '@cspell/filetypes@8.16.0': - resolution: {integrity: sha1-exFjlGzRFaF/OC1jMqav7ZvCNzQ=} - engines: {node: '>=18'} - - '@cspell/strong-weak-map@8.16.0': - resolution: {integrity: sha1-YI7FA20sTmCGgj7tdYG7r3ZHgfQ=} - engines: {node: '>=18'} - - '@cspell/url@8.16.0': - resolution: {integrity: sha1-HEJt0ZtSvJtfcA/yigIhV1JWNAo=} - engines: {node: '>=18.0'} - - array-timsort@1.0.3: - resolution: {integrity: sha1-PJ5BmeVPsrnD/ll2OWohYU7w2SY=} - - braces@3.0.3: - resolution: {integrity: sha1-SQMy9AkZRSJy1VqEgK3AxEE1h4k=} - engines: {node: '>=8'} - - callsites@3.1.0: - resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=} - engines: {node: '>=6'} - - chalk-template@1.1.0: - resolution: {integrity: sha1-/8Vdtt10XpOUuFMnyKyEZu23p7E=} - engines: {node: '>=14.16'} - - chalk@5.3.0: - resolution: {integrity: sha1-Z8IKfr73Dn85cKAfkPohDLaGA4U=} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - - clear-module@4.1.2: - resolution: {integrity: sha1-WlilyfjczzY1Ra1yhMrTyIc1KoA=} - engines: {node: '>=8'} - - commander@12.1.0: - resolution: {integrity: sha1-AUI7NvUBJZ/arE0OTWDJbJkVhdM=} - engines: {node: '>=18'} - - comment-json@4.2.5: - resolution: {integrity: sha1-SC4IX3WcJwS2C8b5f1W4wBvEHnA=} - engines: {node: '>= 6'} - - core-util-is@1.0.3: - resolution: {integrity: sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=} - - cspell-config-lib@8.16.0: - resolution: {integrity: sha1-PaMbgneG+D3VhOVd+efvQPMszyU=} - engines: {node: '>=18'} - - cspell-dictionary@8.16.0: - resolution: {integrity: sha1-Eb30FwJDLvi821fHGBqF88wGk1U=} - engines: {node: '>=18'} - - cspell-gitignore@8.16.0: - resolution: {integrity: sha1-/WTRijEBcFuc+bT9WzVSLBp14HE=} - engines: {node: '>=18'} - hasBin: true - - cspell-glob@8.16.0: - resolution: {integrity: sha1-Twjt9U/NqnHcg1JBaWCq1fiEpC8=} - engines: {node: '>=18'} - - cspell-grammar@8.16.0: - resolution: {integrity: sha1-i+A+YX9Vlif9Oegt14EmNqBU79c=} - engines: {node: '>=18'} - hasBin: true - - cspell-io@8.16.0: - resolution: {integrity: sha1-8yxgotJyqIiDp8iDvh49i3vo/mQ=} - engines: {node: '>=18'} - - cspell-lib@8.16.0: - resolution: {integrity: sha1-JoJPfAlvuhzRZytQaWBT8D2jQus=} - engines: {node: '>=18'} - - cspell-trie-lib@8.16.0: - resolution: {integrity: sha1-R8GpxSHDw8q83IVny9YBjSlyi/E=} - engines: {node: '>=18'} - - cspell@8.16.0: - resolution: {integrity: sha1-GJfRI/iFQwS8hKwzJZDHMOk8USM=} - engines: {node: '>=18'} - hasBin: true - - env-paths@3.0.0: - resolution: {integrity: sha1-Lx6Jwvbb00COGxcR3YLWLjF/WNo=} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - esprima@4.0.1: - resolution: {integrity: sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=} - engines: {node: '>=4'} - hasBin: true - - fast-equals@5.0.1: - resolution: {integrity: sha1-pO7+PF0cDQIa7tC8ELpeDBLuQF0=} - engines: {node: '>=6.0.0'} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=} - - fdir@6.4.2: - resolution: {integrity: sha1-3ap84YMbFhvDZXu5nLNuFiJwJok=} - peerDependencies: - picomatch: ^3 || ^4 - peerDependenciesMeta: - picomatch: - optional: true - - file-entry-cache@9.1.0: - resolution: {integrity: sha1-LmatmM6T9JrtGxeMV7C1dBWR4HU=} - engines: {node: '>=18'} - - fill-range@7.1.1: - resolution: {integrity: sha1-RCZdPKwH4+p9wkdRY4BkN1SgUpI=} - engines: {node: '>=8'} - - find-up-simple@1.0.0: - resolution: {integrity: sha1-IdA1/en9vVbI9NL2PzL9k6HPw2g=} - engines: {node: '>=18'} - - flat-cache@5.0.0: - resolution: {integrity: sha1-JsTaew8oi0CLsrUGsstmwkDd8GI=} - engines: {node: '>=18'} - - flatted@3.3.1: - resolution: {integrity: sha1-IdtHBymmc01JlwAvQ5yzCJh/Vno=} - - gensequence@7.0.0: - resolution: {integrity: sha1-u2rt7I/2ZeOmxC+SgjEh46bqdxg=} - engines: {node: '>=18'} - - get-stdin@9.0.0: - resolution: {integrity: sha1-OYP/guA9VvGy6g0+YDJfOdcDpXU=} - engines: {node: '>=12'} - - global-directory@4.0.1: - resolution: {integrity: sha1-TXrHz9LLc/MExTuIEIkXSN9eNh4=} - engines: {node: '>=18'} - - has-own-prop@2.0.0: - resolution: {integrity: sha1-8PldWPZYBPXSGNsyVju4W44EF68=} - engines: {node: '>=8'} - - import-fresh@3.3.0: - resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=} - engines: {node: '>=6'} - - import-meta-resolve@4.1.0: - resolution: {integrity: sha1-+duL6tn6+mGtuBHbd6K/IsU5lwY=} - - ini@4.1.1: - resolution: {integrity: sha1-2Vs9hDsekG5W1nR9VEeQT/UM56E=} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - is-number@7.0.0: - resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=} - engines: {node: '>=0.12.0'} - - json-buffer@3.0.1: - resolution: {integrity: sha1-kziAKjDTtmBfvgYT4JQAjKjAWhM=} - - keyv@4.5.4: - resolution: {integrity: sha1-qHmpnilFL5QkOfKkBeOvizHU3pM=} - - micromatch@4.0.8: - resolution: {integrity: sha1-1m+hjzpHB2eJMgubGvMr2G2fogI=} - engines: {node: '>=8.6'} - - parent-module@1.0.1: - resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=} - engines: {node: '>=6'} - - parent-module@2.0.0: - resolution: {integrity: sha1-+nH4j/GlDCfhXY/3Tg46lSO/hwg=} - engines: {node: '>=8'} - - picomatch@2.3.1: - resolution: {integrity: sha1-O6ODNzNkbZ0+SZWUbBNlpn+wekI=} - engines: {node: '>=8.6'} - - picomatch@4.0.2: - resolution: {integrity: sha1-d8dCkx6PO4gglGx2zQwfE3MNHas=} - engines: {node: '>=12'} - - repeat-string@1.6.1: - resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} - engines: {node: '>=0.10'} - - resolve-from@4.0.0: - resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=} - engines: {node: '>=4'} - - resolve-from@5.0.0: - resolution: {integrity: sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=} - engines: {node: '>=8'} - - semver@7.6.3: - resolution: {integrity: sha1-mA97VVC8F1+03AlAMIVif56zMUM=} - engines: {node: '>=10'} - hasBin: true - - tinyglobby@0.2.10: - resolution: {integrity: sha1-5xLPLcm5Wh9cW70VlyDhWDOXeg8=} - engines: {node: '>=12.0.0'} - - to-regex-range@5.0.1: - resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=} - engines: {node: '>=8.0'} - - vscode-languageserver-textdocument@1.0.12: - resolution: {integrity: sha1-RX7gQnGrOJmKCTxowjQvU/bkpjE=} - - vscode-uri@3.0.8: - resolution: {integrity: sha1-F3CTjT5yWIZZoXLQ/UZCeACD/58=} - - xdg-basedir@5.1.0: - resolution: {integrity: sha1-HvuhlCXnO+G8byps61Kj0siEwMk=} - engines: {node: '>=12'} - - yaml@2.6.0: - resolution: {integrity: sha1-FAWa2dCxaA0PBNOmD+APOoVzA8M=} - engines: {node: '>= 14'} - hasBin: true - -snapshots: - - '@cspell/cspell-bundled-dicts@8.16.0': dependencies: '@cspell/dict-ada': 4.0.5 '@cspell/dict-al': 1.0.3 @@ -480,7 +54,7 @@ snapshots: '@cspell/dict-markdown': 2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11) '@cspell/dict-monkeyc': 1.0.9 '@cspell/dict-node': 5.0.5 - '@cspell/dict-npm': 5.1.12 + '@cspell/dict-npm': 5.1.13 '@cspell/dict-php': 4.0.13 '@cspell/dict-powershell': 5.0.13 '@cspell/dict-public-licenses': 2.0.11 @@ -489,224 +63,416 @@ snapshots: '@cspell/dict-ruby': 5.0.7 '@cspell/dict-rust': 4.0.10 '@cspell/dict-scala': 5.0.6 - '@cspell/dict-software-terms': 4.1.15 + '@cspell/dict-software-terms': 4.1.17 '@cspell/dict-sql': 2.1.8 '@cspell/dict-svelte': 1.0.5 '@cspell/dict-swift': 2.0.4 '@cspell/dict-terraform': 1.0.6 '@cspell/dict-typescript': 3.1.11 '@cspell/dict-vue': 3.0.3 + dev: false - '@cspell/cspell-json-reporter@8.16.0': + /@cspell/cspell-json-reporter@8.16.0: + resolution: {integrity: sha512-KLjPK94gA3JNuWy70LeenJ6EL3SFk2ejERKYJ6SVV/cVOKIvVd2qe42yX3/A/DkF2xzuZ2LD4z0sfoqQL1BaqA==} + engines: {node: '>=18'} dependencies: '@cspell/cspell-types': 8.16.0 + dev: false - '@cspell/cspell-pipe@8.16.0': {} + /@cspell/cspell-pipe@8.16.0: + resolution: {integrity: sha512-WoCgrv/mrtwCY4lhc6vEcqN3AQ7lT6K0NW5ShoSo116U2tRaW0unApIYH4Va8u7T9g3wyspFEceQRR1xD9qb9w==} + engines: {node: '>=18'} + dev: false - '@cspell/cspell-resolver@8.16.0': + /@cspell/cspell-resolver@8.16.0: + resolution: {integrity: sha512-b+99bph43ptkXlQHgPXSkN/jK6LQHy2zL1Fm9up7+x6Yr64bxAzWzoeqJAPtnrPvFuOrFN0jZasZzKBw8CvrrQ==} + engines: {node: '>=18'} dependencies: global-directory: 4.0.1 + dev: false - '@cspell/cspell-service-bus@8.16.0': {} + /@cspell/cspell-service-bus@8.16.0: + resolution: {integrity: sha512-+fn763JKA4EYCOv+1VShFq015UMEBAFRDr+rlCnesgLE0fv9TSFVLsjOfh9/g6GuGQLCRLUqKztwwuueeErstQ==} + engines: {node: '>=18'} + dev: false - '@cspell/cspell-types@8.16.0': {} + /@cspell/cspell-types@8.16.0: + resolution: {integrity: sha512-bGrIK7p4NVsK+QX/CYWmjax+FkzfSIZaIaoiBESGV5gmwgXDVRMJ3IP6tQVAmTtckOYHCmtT5CZgI8zXWr8dHQ==} + engines: {node: '>=18'} + dev: false - '@cspell/dict-ada@4.0.5': {} + /@cspell/dict-ada@4.0.5: + resolution: {integrity: sha512-6/RtZ/a+lhFVmrx/B7bfP7rzC4yjEYe8o74EybXcvu4Oue6J4Ey2WSYj96iuodloj1LWrkNCQyX5h4Pmcj0Iag==} + dev: false - '@cspell/dict-al@1.0.3': {} + /@cspell/dict-al@1.0.3: + resolution: {integrity: sha512-V1HClwlfU/qwSq2Kt+MkqRAsonNu3mxjSCDyGRecdLGIHmh7yeEeaxqRiO/VZ4KP+eVSiSIlbwrb5YNFfxYZbw==} + dev: false - '@cspell/dict-aws@4.0.7': {} + /@cspell/dict-aws@4.0.7: + resolution: {integrity: sha512-PoaPpa2NXtSkhGIMIKhsJUXB6UbtTt6Ao3x9JdU9kn7fRZkwD4RjHDGqulucIOz7KeEX/dNRafap6oK9xHe4RA==} + dev: false - '@cspell/dict-bash@4.1.8': {} + /@cspell/dict-bash@4.1.8: + resolution: {integrity: sha512-I2CM2pTNthQwW069lKcrVxchJGMVQBzru2ygsHCwgidXRnJL/NTjAPOFTxN58Jc1bf7THWghfEDyKX/oyfc0yg==} + dev: false - '@cspell/dict-companies@3.1.7': {} + /@cspell/dict-companies@3.1.7: + resolution: {integrity: sha512-ncVs/efuAkP1/tLDhWbXukBjgZ5xOUfe03neHMWsE8zvXXc5+Lw6TX5jaJXZLOoES/f4j4AhRE20jsPCF5pm+A==} + dev: false - '@cspell/dict-cpp@6.0.2': {} + /@cspell/dict-cpp@6.0.2: + resolution: {integrity: sha512-yw5eejWvY4bAnc6LUA44m4WsFwlmgPt2uMSnO7QViGMBDuoeopMma4z9XYvs4lSjTi8fIJs/A1YDfM9AVzb8eg==} + dev: false - '@cspell/dict-cryptocurrencies@5.0.3': {} + /@cspell/dict-cryptocurrencies@5.0.3: + resolution: {integrity: sha512-bl5q+Mk+T3xOZ12+FG37dB30GDxStza49Rmoax95n37MTLksk9wBo1ICOlPJ6PnDUSyeuv4SIVKgRKMKkJJglA==} + dev: false - '@cspell/dict-csharp@4.0.5': {} + /@cspell/dict-csharp@4.0.5: + resolution: {integrity: sha512-c/sFnNgtRwRJxtC3JHKkyOm+U3/sUrltFeNwml9VsxKBHVmvlg4tk4ar58PdpW9/zTlGUkWi2i85//DN1EsUCA==} + dev: false - '@cspell/dict-css@4.0.16': {} + /@cspell/dict-css@4.0.16: + resolution: {integrity: sha512-70qu7L9z/JR6QLyJPk38fNTKitlIHnfunx0wjpWQUQ8/jGADIhMCrz6hInBjqPNdtGpYm8d1dNFyF8taEkOgrQ==} + dev: false - '@cspell/dict-dart@2.2.4': {} + /@cspell/dict-dart@2.2.4: + resolution: {integrity: sha512-of/cVuUIZZK/+iqefGln8G3bVpfyN6ZtH+LyLkHMoR5tEj+2vtilGNk9ngwyR8L4lEqbKuzSkOxgfVjsXf5PsQ==} + dev: false - '@cspell/dict-data-science@2.0.5': {} + /@cspell/dict-data-science@2.0.5: + resolution: {integrity: sha512-nNSILXmhSJox9/QoXICPQgm8q5PbiSQP4afpbkBqPi/u/b3K9MbNH5HvOOa6230gxcGdbZ9Argl2hY/U8siBlg==} + dev: false - '@cspell/dict-django@4.1.3': {} + /@cspell/dict-django@4.1.3: + resolution: {integrity: sha512-yBspeL3roJlO0a1vKKNaWABURuHdHZ9b1L8d3AukX0AsBy9snSggc8xCavPmSzNfeMDXbH+1lgQiYBd3IW03fg==} + dev: false - '@cspell/dict-docker@1.1.11': {} + /@cspell/dict-docker@1.1.11: + resolution: {integrity: sha512-s0Yhb16/R+UT1y727ekbR/itWQF3Qz275DR1ahOa66wYtPjHUXmhM3B/LT3aPaX+hD6AWmK23v57SuyfYHUjsw==} + dev: false - '@cspell/dict-dotnet@5.0.8': {} + /@cspell/dict-dotnet@5.0.8: + resolution: {integrity: sha512-MD8CmMgMEdJAIPl2Py3iqrx3B708MbCIXAuOeZ0Mzzb8YmLmiisY7QEYSZPg08D7xuwARycP0Ki+bb0GAkFSqg==} + dev: false - '@cspell/dict-elixir@4.0.6': {} + /@cspell/dict-elixir@4.0.6: + resolution: {integrity: sha512-TfqSTxMHZ2jhiqnXlVKM0bUADtCvwKQv2XZL/DI0rx3doG8mEMS8SGPOmiyyGkHpR/pGOq18AFH3BEm4lViHIw==} + dev: false - '@cspell/dict-en-common-misspellings@2.0.7': {} + /@cspell/dict-en-common-misspellings@2.0.7: + resolution: {integrity: sha512-qNFo3G4wyabcwnM+hDrMYKN9vNVg/k9QkhqSlSst6pULjdvPyPs1mqz1689xO/v9t8e6sR4IKc3CgUXDMTYOpA==} + dev: false - '@cspell/dict-en-gb@1.1.33': {} + /@cspell/dict-en-gb@1.1.33: + resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} + dev: false - '@cspell/dict-en_us@4.3.27': {} + /@cspell/dict-en_us@4.3.27: + resolution: {integrity: sha512-7JYHahRWpi0VykWFTSM03KL/0fs6YtYfpOaTAg4N/d0wB2GfwVG/FJ/SBCjD4LBc6Rx9dzdo95Hs4BB8GPQbOA==} + dev: false - '@cspell/dict-filetypes@3.0.8': {} + /@cspell/dict-filetypes@3.0.8: + resolution: {integrity: sha512-D3N8sm/iptzfVwsib/jvpX+K/++rM8SRpLDFUaM4jxm8EyGmSIYRbKZvdIv5BkAWmMlTWoRqlLn7Yb1b11jKJg==} + dev: false - '@cspell/dict-flutter@1.0.3': {} + /@cspell/dict-flutter@1.0.3: + resolution: {integrity: sha512-52C9aUEU22ptpgYh6gQyIdA4MP6NPwzbEqndfgPh3Sra191/kgs7CVqXiO1qbtZa9gnYHUoVApkoxRE7mrXHfg==} + dev: false - '@cspell/dict-fonts@4.0.3': {} + /@cspell/dict-fonts@4.0.3: + resolution: {integrity: sha512-sPd17kV5qgYXLteuHFPn5mbp/oCHKgitNfsZLFC3W2fWEgZlhg4hK+UGig3KzrYhhvQ8wBnmZrAQm0TFKCKzsA==} + dev: false - '@cspell/dict-fsharp@1.0.4': {} + /@cspell/dict-fsharp@1.0.4: + resolution: {integrity: sha512-G5wk0o1qyHUNi9nVgdE1h5wl5ylq7pcBjX8vhjHcO4XBq20D5eMoXjwqMo/+szKAqzJ+WV3BgAL50akLKrT9Rw==} + dev: false - '@cspell/dict-fullstack@3.2.3': {} + /@cspell/dict-fullstack@3.2.3: + resolution: {integrity: sha512-62PbndIyQPH11mAv0PyiyT0vbwD0AXEocPpHlCHzfb5v9SspzCCbzQ/LIBiFmyRa+q5LMW35CnSVu6OXdT+LKg==} + dev: false - '@cspell/dict-gaming-terms@1.0.8': {} + /@cspell/dict-gaming-terms@1.0.8: + resolution: {integrity: sha512-7OL0zTl93WFWhhtpXFrtm9uZXItC3ncAs8d0iQDMMFVNU1rBr6raBNxJskxE5wx2Ant12fgI66ZGVagXfN+yfA==} + dev: false - '@cspell/dict-git@3.0.3': {} + /@cspell/dict-git@3.0.3: + resolution: {integrity: sha512-LSxB+psZ0qoj83GkyjeEH/ZViyVsGEF/A6BAo8Nqc0w0HjD2qX/QR4sfA6JHUgQ3Yi/ccxdK7xNIo67L2ScW5A==} + dev: false - '@cspell/dict-golang@6.0.16': {} + /@cspell/dict-golang@6.0.16: + resolution: {integrity: sha512-hZOBlgcguv2Hdc93n2zjdAQm1j3grsN9T9WhPnQ1wh2vUDoCLEujg+6gWhjcLb8ECOcwZTWgNyQLWeOxEsAj/w==} + dev: false - '@cspell/dict-google@1.0.4': {} + /@cspell/dict-google@1.0.4: + resolution: {integrity: sha512-JThUT9eiguCja1mHHLwYESgxkhk17Gv7P3b1S7ZJzXw86QyVHPrbpVoMpozHk0C9o+Ym764B7gZGKmw9uMGduQ==} + dev: false - '@cspell/dict-haskell@4.0.4': {} + /@cspell/dict-haskell@4.0.4: + resolution: {integrity: sha512-EwQsedEEnND/vY6tqRfg9y7tsnZdxNqOxLXSXTsFA6JRhUlr8Qs88iUUAfsUzWc4nNmmzQH2UbtT25ooG9x4nA==} + dev: false - '@cspell/dict-html-symbol-entities@4.0.3': {} + /@cspell/dict-html-symbol-entities@4.0.3: + resolution: {integrity: sha512-aABXX7dMLNFdSE8aY844X4+hvfK7977sOWgZXo4MTGAmOzR8524fjbJPswIBK7GaD3+SgFZ2yP2o0CFvXDGF+A==} + dev: false - '@cspell/dict-html@4.0.10': {} + /@cspell/dict-html@4.0.10: + resolution: {integrity: sha512-I9uRAcdtHbh0wEtYZlgF0TTcgH0xaw1B54G2CW+tx4vHUwlde/+JBOfIzird4+WcMv4smZOfw+qHf7puFUbI5g==} + dev: false - '@cspell/dict-java@5.0.10': {} + /@cspell/dict-java@5.0.10: + resolution: {integrity: sha512-pVNcOnmoGiNL8GSVq4WbX/Vs2FGS0Nej+1aEeGuUY9CU14X8yAVCG+oih5ZoLt1jaR8YfR8byUF8wdp4qG4XIw==} + dev: false - '@cspell/dict-julia@1.0.4': {} + /@cspell/dict-julia@1.0.4: + resolution: {integrity: sha512-bFVgNX35MD3kZRbXbJVzdnN7OuEqmQXGpdOi9jzB40TSgBTlJWA4nxeAKV4CPCZxNRUGnLH0p05T/AD7Aom9/w==} + dev: false - '@cspell/dict-k8s@1.0.9': {} + /@cspell/dict-k8s@1.0.9: + resolution: {integrity: sha512-Q7GELSQIzo+BERl2ya/nBEnZeQC+zJP19SN1pI6gqDYraM51uYJacbbcWLYYO2Y+5joDjNt/sd/lJtLaQwoSlA==} + dev: false - '@cspell/dict-latex@4.0.3': {} + /@cspell/dict-latex@4.0.3: + resolution: {integrity: sha512-2KXBt9fSpymYHxHfvhUpjUFyzrmN4c4P8mwIzweLyvqntBT3k0YGZJSriOdjfUjwSygrfEwiuPI1EMrvgrOMJw==} + dev: false - '@cspell/dict-lorem-ipsum@4.0.3': {} + /@cspell/dict-lorem-ipsum@4.0.3: + resolution: {integrity: sha512-WFpDi/PDYHXft6p0eCXuYnn7mzMEQLVeqpO+wHSUd+kz5ADusZ4cpslAA4wUZJstF1/1kMCQCZM6HLZic9bT8A==} + dev: false - '@cspell/dict-lua@4.0.6': {} + /@cspell/dict-lua@4.0.6: + resolution: {integrity: sha512-Jwvh1jmAd9b+SP9e1GkS2ACbqKKRo9E1f9GdjF/ijmooZuHU0hPyqvnhZzUAxO1egbnNjxS/J2T6iUtjAUK2KQ==} + dev: false - '@cspell/dict-makefile@1.0.3': {} + /@cspell/dict-makefile@1.0.3: + resolution: {integrity: sha512-R3U0DSpvTs6qdqfyBATnePj9Q/pypkje0Nj26mQJ8TOBQutCRAJbr2ZFAeDjgRx5EAJU/+8txiyVF97fbVRViw==} + dev: false - '@cspell/dict-markdown@2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11)': + /@cspell/dict-markdown@2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11): + resolution: {integrity: sha512-F9SGsSOokFn976DV4u/1eL4FtKQDSgJHSZ3+haPRU5ki6OEqojxKa8hhj4AUrtNFpmBaJx/WJ4YaEzWqG7hgqg==} + peerDependencies: + '@cspell/dict-css': ^4.0.16 + '@cspell/dict-html': ^4.0.10 + '@cspell/dict-html-symbol-entities': ^4.0.3 + '@cspell/dict-typescript': ^3.1.11 dependencies: '@cspell/dict-css': 4.0.16 '@cspell/dict-html': 4.0.10 '@cspell/dict-html-symbol-entities': 4.0.3 '@cspell/dict-typescript': 3.1.11 + dev: false - '@cspell/dict-monkeyc@1.0.9': {} + /@cspell/dict-monkeyc@1.0.9: + resolution: {integrity: sha512-Jvf6g5xlB4+za3ThvenYKREXTEgzx5gMUSzrAxIiPleVG4hmRb/GBSoSjtkGaibN3XxGx5x809gSTYCA/IHCpA==} + dev: false - '@cspell/dict-node@5.0.5': {} + /@cspell/dict-node@5.0.5: + resolution: {integrity: sha512-7NbCS2E8ZZRZwlLrh2sA0vAk9n1kcTUiRp/Nia8YvKaItGXLfxYqD2rMQ3HpB1kEutal6hQLVic3N2Yi1X7AaA==} + dev: false - '@cspell/dict-npm@5.1.12': {} + /@cspell/dict-npm@5.1.13: + resolution: {integrity: sha512-7S1Pwq16M4sqvv/op7iHErc6Diz+DXsBYRMS0dDj6HUS44VXMvgejXa3RMd5jwBmcHzkInFm3DW1eb2exBs0cg==} + dev: false - '@cspell/dict-php@4.0.13': {} + /@cspell/dict-php@4.0.13: + resolution: {integrity: sha512-P6sREMZkhElzz/HhXAjahnICYIqB/HSGp1EhZh+Y6IhvC15AzgtDP8B8VYCIsQof6rPF1SQrFwunxOv8H1e2eg==} + dev: false - '@cspell/dict-powershell@5.0.13': {} + /@cspell/dict-powershell@5.0.13: + resolution: {integrity: sha512-0qdj0XZIPmb77nRTynKidRJKTU0Fl+10jyLbAhFTuBWKMypVY06EaYFnwhsgsws/7nNX8MTEQuewbl9bWFAbsg==} + dev: false - '@cspell/dict-public-licenses@2.0.11': {} + /@cspell/dict-public-licenses@2.0.11: + resolution: {integrity: sha512-rR5KjRUSnVKdfs5G+gJ4oIvQvm8+NJ6cHWY2N+GE69/FSGWDOPHxulCzeGnQU/c6WWZMSimG9o49i9r//lUQyA==} + dev: false - '@cspell/dict-python@4.2.12': + /@cspell/dict-python@4.2.12: + resolution: {integrity: sha512-U25eOFu+RE0aEcF2AsxZmq3Lic7y9zspJ9SzjrC0mfJz+yr3YmSCw4E0blMD3mZoNcf7H/vMshuKIY5AY36U+Q==} dependencies: '@cspell/dict-data-science': 2.0.5 + dev: false - '@cspell/dict-r@2.0.4': {} + /@cspell/dict-r@2.0.4: + resolution: {integrity: sha512-cBpRsE/U0d9BRhiNRMLMH1PpWgw+N+1A2jumgt1if9nBGmQw4MUpg2u9I0xlFVhstTIdzXiLXMxP45cABuiUeQ==} + dev: false - '@cspell/dict-ruby@5.0.7': {} + /@cspell/dict-ruby@5.0.7: + resolution: {integrity: sha512-4/d0hcoPzi5Alk0FmcyqlzFW9lQnZh9j07MJzPcyVO62nYJJAGKaPZL2o4qHeCS/od/ctJC5AHRdoUm0ktsw6Q==} + dev: false - '@cspell/dict-rust@4.0.10': {} + /@cspell/dict-rust@4.0.10: + resolution: {integrity: sha512-6o5C8566VGTTctgcwfF3Iy7314W0oMlFFSQOadQ0OEdJ9Z9ERX/PDimrzP3LGuOrvhtEFoK8pj+BLnunNwRNrw==} + dev: false - '@cspell/dict-scala@5.0.6': {} + /@cspell/dict-scala@5.0.6: + resolution: {integrity: sha512-tl0YWAfjUVb4LyyE4JIMVE8DlLzb1ecHRmIWc4eT6nkyDqQgHKzdHsnusxFEFMVLIQomgSg0Zz6hJ5S1E4W4ww==} + dev: false - '@cspell/dict-software-terms@4.1.15': {} + /@cspell/dict-software-terms@4.1.17: + resolution: {integrity: sha512-QORIk1R5DV8oOQ+oAlUWE7UomaJwUucqu2srrc2+PmkoI6R1fJwwg2uHCPBWlIb4PGDNEdXLv9BAD13H+0wytQ==} + dev: false - '@cspell/dict-sql@2.1.8': {} + /@cspell/dict-sql@2.1.8: + resolution: {integrity: sha512-dJRE4JV1qmXTbbGm6WIcg1knmR6K5RXnQxF4XHs5HA3LAjc/zf77F95i5LC+guOGppVF6Hdl66S2UyxT+SAF3A==} + dev: false - '@cspell/dict-svelte@1.0.5': {} + /@cspell/dict-svelte@1.0.5: + resolution: {integrity: sha512-sseHlcXOqWE4Ner9sg8KsjxwSJ2yssoJNqFHR9liWVbDV+m7kBiUtn2EB690TihzVsEmDr/0Yxrbb5Bniz70mA==} + dev: false - '@cspell/dict-swift@2.0.4': {} + /@cspell/dict-swift@2.0.4: + resolution: {integrity: sha512-CsFF0IFAbRtYNg0yZcdaYbADF5F3DsM8C4wHnZefQy8YcHP/qjAF/GdGfBFBLx+XSthYuBlo2b2XQVdz3cJZBw==} + dev: false - '@cspell/dict-terraform@1.0.6': {} + /@cspell/dict-terraform@1.0.6: + resolution: {integrity: sha512-Sqm5vGbXuI9hCFcr4w6xWf4Y25J9SdleE/IqfM6RySPnk8lISEmVdax4k6+Kinv9qaxyvnIbUUN4WFLWcBPQAg==} + dev: false - '@cspell/dict-typescript@3.1.11': {} + /@cspell/dict-typescript@3.1.11: + resolution: {integrity: sha512-FwvK5sKbwrVpdw0e9+1lVTl8FPoHYvfHRuQRQz2Ql5XkC0gwPPkpoyD1zYImjIyZRoYXk3yp9j8ss4iz7A7zoQ==} + dev: false - '@cspell/dict-vue@3.0.3': {} + /@cspell/dict-vue@3.0.3: + resolution: {integrity: sha512-akmYbrgAGumqk1xXALtDJcEcOMYBYMnkjpmGzH13Ozhq1mkPF4VgllFQlm1xYde+BUKNnzMgPEzxrL2qZllgYA==} + dev: false - '@cspell/dynamic-import@8.16.0': + /@cspell/dynamic-import@8.16.0: + resolution: {integrity: sha512-FH+B5y71qfunagXiLSJhXP9h/Vwb1Z8Cc/hLmliGekw/Y8BuYknL86tMg9grXBYNmM0kifIv6ZesQl8Km/p/rA==} + engines: {node: '>=18.0'} dependencies: import-meta-resolve: 4.1.0 + dev: false - '@cspell/filetypes@8.16.0': {} + /@cspell/filetypes@8.16.0: + resolution: {integrity: sha512-u2Ub0uSwXFPJFvXhAO/0FZBj3sMr4CeYCiQwTUsdFRkRMFpbTc7Vf+a+aC2vIj6WcaWrYXrJy3NZF/yjqF6SGw==} + engines: {node: '>=18'} + dev: false - '@cspell/strong-weak-map@8.16.0': {} + /@cspell/strong-weak-map@8.16.0: + resolution: {integrity: sha512-R6N12wEIQpBk2uyni/FU1SFSIjP0uql7ynXVcF1ob8/JJeRoikssydi9Xq5J6ghMw+X50u35mFvg9BgWKz0d+g==} + engines: {node: '>=18'} + dev: false - '@cspell/url@8.16.0': {} + /@cspell/url@8.16.0: + resolution: {integrity: sha512-zW+6hAieD/FjysfjY4mVv7iHWWasBP3ldj6L+xy2p4Kuax1nug7uuJqMHlAVude/OywNwENG0rYaP/P9Pg4O+w==} + engines: {node: '>=18.0'} + dev: false - array-timsort@1.0.3: {} + /array-timsort@1.0.3: + resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} + dev: false - braces@3.0.3: + /braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} dependencies: fill-range: 7.1.1 + dev: false - callsites@3.1.0: {} + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: false - chalk-template@1.1.0: + /chalk-template@1.1.0: + resolution: {integrity: sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==} + engines: {node: '>=14.16'} dependencies: chalk: 5.3.0 + dev: false - chalk@5.3.0: {} + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + dev: false - clear-module@4.1.2: + /clear-module@4.1.2: + resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==} + engines: {node: '>=8'} dependencies: parent-module: 2.0.0 resolve-from: 5.0.0 + dev: false - commander@12.1.0: {} + /commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} + dev: false - comment-json@4.2.5: + /comment-json@4.2.5: + resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==} + engines: {node: '>= 6'} dependencies: array-timsort: 1.0.3 core-util-is: 1.0.3 esprima: 4.0.1 has-own-prop: 2.0.0 repeat-string: 1.6.1 + dev: false - core-util-is@1.0.3: {} + /core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + dev: false - cspell-config-lib@8.16.0: + /cspell-config-lib@8.16.0: + resolution: {integrity: sha512-PGT6ohLtIYXYLIm+R5hTcTrF0dzj8e7WAUJSJe5WlV/7lrwVdwgWaliLcXtSSPmfxgczr6sndX9TMJ2IEmPrmg==} + engines: {node: '>=18'} dependencies: '@cspell/cspell-types': 8.16.0 comment-json: 4.2.5 yaml: 2.6.0 + dev: false - cspell-dictionary@8.16.0: + /cspell-dictionary@8.16.0: + resolution: {integrity: sha512-Y3sN6ttLBKbu0dOLcduY641n5QP1srUvZkW4bOTnG455DbIZfilrP1El/2Hl0RS6hC8LN9PM4bsIm/2xgdbApA==} + engines: {node: '>=18'} dependencies: '@cspell/cspell-pipe': 8.16.0 '@cspell/cspell-types': 8.16.0 cspell-trie-lib: 8.16.0 fast-equals: 5.0.1 + dev: false - cspell-gitignore@8.16.0: + /cspell-gitignore@8.16.0: + resolution: {integrity: sha512-ODKe0ooyzYSBJkwgIVZSRIvzoZfT4tEbFt4fFDT88wPyyfX7xp7MAQhXy5KD1ocXH0WvYbdv37qzn2UbckrahA==} + engines: {node: '>=18'} + hasBin: true dependencies: '@cspell/url': 8.16.0 cspell-glob: 8.16.0 cspell-io: 8.16.0 find-up-simple: 1.0.0 + dev: false - cspell-glob@8.16.0: + /cspell-glob@8.16.0: + resolution: {integrity: sha512-xJSXRHwfENCNFmjpVSEucXY8E3BrpSCA+TukmOYtLyaMKtn6EAwoCpEU7Oj2tZOjdivprPmQ74k4Dqb1RHjIVQ==} + engines: {node: '>=18'} dependencies: '@cspell/url': 8.16.0 micromatch: 4.0.8 + dev: false - cspell-grammar@8.16.0: + /cspell-grammar@8.16.0: + resolution: {integrity: sha512-vvbJEkBqXocGH/H975RtkfMzVpNxNGMd0JCDd+NjbpeRyZceuChFw5Tie7kHteFY29SwZovub+Am3F4H1kmf9A==} + engines: {node: '>=18'} + hasBin: true dependencies: '@cspell/cspell-pipe': 8.16.0 '@cspell/cspell-types': 8.16.0 + dev: false - cspell-io@8.16.0: + /cspell-io@8.16.0: + resolution: {integrity: sha512-WIK5uhPMjGsTAzm2/fGRbIdr7zWsMVG1fn8wNJYUiYELuyvzvLelfI1VG6szaFCGYqd6Uvgb/fS0uNbwGqCLAQ==} + engines: {node: '>=18'} dependencies: '@cspell/cspell-service-bus': 8.16.0 '@cspell/url': 8.16.0 + dev: false - cspell-lib@8.16.0: + /cspell-lib@8.16.0: + resolution: {integrity: sha512-fU8CfECyuhT12COIi4ViQu2bTkdqaa+05YSd2ZV8k8NA7lapPaMFnlooxdfcwwgZJfHeMhRVMzvQF1OhWmwGfA==} + engines: {node: '>=18'} dependencies: '@cspell/cspell-bundled-dicts': 8.16.0 '@cspell/cspell-pipe': 8.16.0 @@ -732,14 +498,21 @@ snapshots: vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.0.8 xdg-basedir: 5.1.0 + dev: false - cspell-trie-lib@8.16.0: + /cspell-trie-lib@8.16.0: + resolution: {integrity: sha512-Io1qqI0r4U9ewAWBLClFBBlxLeAoIi15PUGJi4Za1xrlgQJwRE8PMNIJNHKmPEIp78Iute3o/JyC2OfWlxl4Sw==} + engines: {node: '>=18'} dependencies: '@cspell/cspell-pipe': 8.16.0 '@cspell/cspell-types': 8.16.0 gensequence: 7.0.0 + dev: false - cspell@8.16.0: + /cspell@8.16.0: + resolution: {integrity: sha512-U6Up/4nODE+Ca+zqwZXTgBioGuF2JQHLEUIuoRJkJzAZkIBYDqrMXM+zdSL9E39+xb9jAtr9kPAYJf1Eybgi9g==} + engines: {node: '>=18'} + hasBin: true dependencies: '@cspell/cspell-json-reporter': 8.16.0 '@cspell/cspell-pipe': 8.16.0 @@ -759,101 +532,207 @@ snapshots: get-stdin: 9.0.0 semver: 7.6.3 tinyglobby: 0.2.10 + dev: false - env-paths@3.0.0: {} + /env-paths@3.0.0: + resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: false - esprima@4.0.1: {} + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: false - fast-equals@5.0.1: {} + /fast-equals@5.0.1: + resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} + engines: {node: '>=6.0.0'} + dev: false - fast-json-stable-stringify@2.1.0: {} + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: false - fdir@6.4.2(picomatch@4.0.2): - optionalDependencies: + /fdir@6.4.2(picomatch@4.0.2): + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + dependencies: picomatch: 4.0.2 + dev: false - file-entry-cache@9.1.0: + /file-entry-cache@9.1.0: + resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==} + engines: {node: '>=18'} dependencies: flat-cache: 5.0.0 + dev: false - fill-range@7.1.1: + /fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 + dev: false - find-up-simple@1.0.0: {} + /find-up-simple@1.0.0: + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} + dev: false - flat-cache@5.0.0: + /flat-cache@5.0.0: + resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==} + engines: {node: '>=18'} dependencies: - flatted: 3.3.1 + flatted: 3.3.2 keyv: 4.5.4 + dev: false - flatted@3.3.1: {} + /flatted@3.3.2: + resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} + dev: false - gensequence@7.0.0: {} + /gensequence@7.0.0: + resolution: {integrity: sha512-47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ==} + engines: {node: '>=18'} + dev: false - get-stdin@9.0.0: {} + /get-stdin@9.0.0: + resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} + engines: {node: '>=12'} + dev: false - global-directory@4.0.1: + /global-directory@4.0.1: + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} + engines: {node: '>=18'} dependencies: ini: 4.1.1 + dev: false - has-own-prop@2.0.0: {} + /has-own-prop@2.0.0: + resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} + engines: {node: '>=8'} + dev: false - import-fresh@3.3.0: + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 + dev: false - import-meta-resolve@4.1.0: {} + /import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + dev: false - ini@4.1.1: {} + /ini@4.1.1: + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: false - is-number@7.0.0: {} + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: false - json-buffer@3.0.1: {} + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: false - keyv@4.5.4: + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} dependencies: json-buffer: 3.0.1 + dev: false - micromatch@4.0.8: + /micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} dependencies: braces: 3.0.3 picomatch: 2.3.1 + dev: false - parent-module@1.0.1: + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 + dev: false - parent-module@2.0.0: + /parent-module@2.0.0: + resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==} + engines: {node: '>=8'} dependencies: callsites: 3.1.0 + dev: false - picomatch@2.3.1: {} + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: false - picomatch@4.0.2: {} + /picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + dev: false - repeat-string@1.6.1: {} + /repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + dev: false - resolve-from@4.0.0: {} + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: false - resolve-from@5.0.0: {} + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: false - semver@7.6.3: {} + /semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + dev: false - tinyglobby@0.2.10: + /tinyglobby@0.2.10: + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} + engines: {node: '>=12.0.0'} dependencies: fdir: 6.4.2(picomatch@4.0.2) picomatch: 4.0.2 + dev: false - to-regex-range@5.0.1: + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 + dev: false - vscode-languageserver-textdocument@1.0.12: {} + /vscode-languageserver-textdocument@1.0.12: + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} + dev: false - vscode-uri@3.0.8: {} + /vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + dev: false - xdg-basedir@5.1.0: {} + /xdg-basedir@5.1.0: + resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} + engines: {node: '>=12'} + dev: false - yaml@2.6.0: {} + /yaml@2.6.0: + resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==} + engines: {node: '>= 14'} + hasBin: true + dev: false From 7b772b38fa8852f45fe18891dca791d5297d4db5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 19 Nov 2024 12:38:10 +0200 Subject: [PATCH 15/22] Test --- .github/workflows/cspell.yaml | 3 --- ui/appui-react/src/appui-react/layout/widget/Buttons.tsx | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index c5efde02539..a19e5c7521a 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -26,8 +26,5 @@ jobs: with: node-version: 18 - - name: Rush install - run: node common/scripts/install-run-rush.js install - - name: Rush cspell run: node common/scripts/install-run-rush.js cspell diff --git a/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx b/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx index ac18cfca5c4..b3cd14c7303 100644 --- a/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx +++ b/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx @@ -45,6 +45,7 @@ export type WidgetFeature = | "addWidget"; /** @internal */ +// Faaered lol export function TabBarButtons() { const features = useWidgetFeatures(); const [sortedFeatures, isDropdown] = useDropdownFeatures(features); From 36ed7f22706f727e216608fe1b7ff6379ac3b86b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 19 Nov 2024 12:40:21 +0200 Subject: [PATCH 16/22] 1 more test --- .github/workflows/cspell.yaml | 5 ----- ui/appui-react/src/appui-react/layout/widget/Buttons.tsx | 1 - 2 files changed, 6 deletions(-) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index a19e5c7521a..8e0629d30de 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -21,10 +21,5 @@ jobs: git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin - - name: Setup node - uses: actions/setup-node@v4 - with: - node-version: 18 - - name: Rush cspell run: node common/scripts/install-run-rush.js cspell diff --git a/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx b/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx index b3cd14c7303..ac18cfca5c4 100644 --- a/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx +++ b/ui/appui-react/src/appui-react/layout/widget/Buttons.tsx @@ -45,7 +45,6 @@ export type WidgetFeature = | "addWidget"; /** @internal */ -// Faaered lol export function TabBarButtons() { const features = useWidgetFeatures(); const [sortedFeatures, isDropdown] = useDropdownFeatures(features); From db293b7e22abd41795ee6392b8a123394a97ef1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 19 Nov 2024 12:43:06 +0200 Subject: [PATCH 17/22] fix --- .github/workflows/cspell.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml index 8e0629d30de..a19e5c7521a 100644 --- a/.github/workflows/cspell.yaml +++ b/.github/workflows/cspell.yaml @@ -21,5 +21,10 @@ jobs: git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin + - name: Setup node + uses: actions/setup-node@v4 + with: + node-version: 18 + - name: Rush cspell run: node common/scripts/install-run-rush.js cspell From 65bc07548e3a8dc07099f076a190b5275017a953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 19 Nov 2024 13:52:50 +0200 Subject: [PATCH 18/22] Test --- common/autoinstallers/rush-lintstaged/pnpm-lock.yaml | 4 ++-- common/config/rush/pnpm-lock.yaml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml b/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml index 44d2979ad4d..64f3908361b 100644 --- a/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml +++ b/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml @@ -172,7 +172,7 @@ packages: yaml: 1.10.2 dev: false - /cross-spawn@7.0.3: + /cross-spawn@7.0.5: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: @@ -230,7 +230,7 @@ packages: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.5 get-stream: 5.2.0 human-signals: 1.1.1 is-stream: 2.0.1 diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 8ae9894b625..b99afd6d1f9 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -2870,7 +2870,7 @@ packages: '@microsoft/api-extractor': 7.47.11(@types/node@18.11.5) chalk: 3.0.0 cpx2: 3.0.2 - cross-spawn: 7.0.3 + cross-spawn: 7.0.5 fs-extra: 8.1.0 glob: 10.3.12 mocha: 10.2.0 @@ -6900,7 +6900,7 @@ packages: shebang-command: 1.2.0 which: 1.3.1 - /cross-spawn@7.0.3: + /cross-spawn@7.0.5: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: @@ -8040,7 +8040,7 @@ packages: '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 - cross-spawn: 7.0.3 + cross-spawn: 7.0.5 debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 @@ -8171,7 +8171,7 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.5 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 @@ -8186,7 +8186,7 @@ packages: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0. get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 @@ -8459,7 +8459,7 @@ packages: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} engines: {node: '>=14'} dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.5 signal-exit: 4.1.0 /form-data@2.5.1: From fafc5895b27c7b2908813c7d8833e7ee2e1399a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Tue, 19 Nov 2024 14:09:28 +0200 Subject: [PATCH 19/22] reverted package changes --- common/autoinstallers/rush-lintstaged/pnpm-lock.yaml | 4 ++-- common/config/rush/pnpm-lock.yaml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml b/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml index 64f3908361b..44d2979ad4d 100644 --- a/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml +++ b/common/autoinstallers/rush-lintstaged/pnpm-lock.yaml @@ -172,7 +172,7 @@ packages: yaml: 1.10.2 dev: false - /cross-spawn@7.0.5: + /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: @@ -230,7 +230,7 @@ packages: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.3 get-stream: 5.2.0 human-signals: 1.1.1 is-stream: 2.0.1 diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index b99afd6d1f9..aea362d11df 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -2870,7 +2870,7 @@ packages: '@microsoft/api-extractor': 7.47.11(@types/node@18.11.5) chalk: 3.0.0 cpx2: 3.0.2 - cross-spawn: 7.0.5 + cross-spawn: 7.0.3 fs-extra: 8.1.0 glob: 10.3.12 mocha: 10.2.0 @@ -6900,7 +6900,7 @@ packages: shebang-command: 1.2.0 which: 1.3.1 - /cross-spawn@7.0.5: + /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: @@ -8040,7 +8040,7 @@ packages: '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 - cross-spawn: 7.0.5 + cross-spawn: 7.0.3 debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 @@ -8171,7 +8171,7 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.3 get-stream: 6.0.1 human-signals: 2.1.0 is-stream: 2.0.1 @@ -8459,7 +8459,7 @@ packages: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} engines: {node: '>=14'} dependencies: - cross-spawn: 7.0.5 + cross-spawn: 7.0.3 signal-exit: 4.1.0 /form-data@2.5.1: From 8b476b9773d2a36aae689b2cecd4e8a0b36b3344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Wed, 20 Nov 2024 10:41:36 +0200 Subject: [PATCH 20/22] revert change --- common/config/rush/pnpm-lock.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index aea362d11df..8ae9894b625 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -8186,7 +8186,7 @@ packages: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} dependencies: - cross-spawn: 7.0. + cross-spawn: 7.0.3 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 From ccca892bebda007eb8c6593bf49673778aaca90b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Mon, 25 Nov 2024 16:01:44 +0200 Subject: [PATCH 21/22] wow --- .github/workflows/CI.yaml | 31 +++++++++++++++++++++++++++++++ .github/workflows/cspell.yaml | 30 ------------------------------ 2 files changed, 31 insertions(+), 30 deletions(-) delete mode 100644 .github/workflows/cspell.yaml diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index f54b158235f..db9a463ac14 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -51,3 +51,34 @@ jobs: - name: appui-react tests run: npm run cover working-directory: ui/appui-react + + extract-api: + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@v2 + + - name: Configure git + run: | + git config --local user.email imodeljs-admin@users.noreply.github.com + git config --local user.name imodeljs-admin + + - name: Setup node + uses: actions/setup-node@v4 + with: + node-version: 18 + + - name: Rush install + run: node common/scripts/install-run-rush.js install + + - name: Rush build + run: node common/scripts/install-run-rush.js build -v -p max --to-version-policy prerelease-monorepo-lockStep + + - name: Rush extract-api + run: node common/scripts/install-run-rush.js extract-api + + - name: Publish extracted api + uses: actions/upload-artifact@v4 + with: + name: extracted-api + path: common/api diff --git a/.github/workflows/cspell.yaml b/.github/workflows/cspell.yaml deleted file mode 100644 index a19e5c7521a..00000000000 --- a/.github/workflows/cspell.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Workflow to run cSpell on entire monorepo - -name: cSpell - -on: - workflow_dispatch: - pull_request: - branches: - - master - - release/* - -jobs: - cspell: - runs-on: ubuntu-latest - steps: - - name: Checkout branch - uses: actions/checkout@v2 - - - name: Configure git - run: | - git config --local user.email imodeljs-admin@users.noreply.github.com - git config --local user.name imodeljs-admin - - - name: Setup node - uses: actions/setup-node@v4 - with: - node-version: 18 - - - name: Rush cspell - run: node common/scripts/install-run-rush.js cspell From 01a7dce7d6ee82c5e20d8fed0bdd11147d2312d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Budrevi=C4=8Dius?= Date: Mon, 25 Nov 2024 16:04:57 +0200 Subject: [PATCH 22/22] Fix --- .github/workflows/CI.yaml | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index db9a463ac14..09db81b32e8 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -52,7 +52,7 @@ jobs: run: npm run cover working-directory: ui/appui-react - extract-api: + cspell: runs-on: ubuntu-latest steps: - name: Checkout branch @@ -62,23 +62,10 @@ jobs: run: | git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin - - name: Setup node uses: actions/setup-node@v4 with: node-version: 18 - - name: Rush install - run: node common/scripts/install-run-rush.js install - - - name: Rush build - run: node common/scripts/install-run-rush.js build -v -p max --to-version-policy prerelease-monorepo-lockStep - - - name: Rush extract-api - run: node common/scripts/install-run-rush.js extract-api - - - name: Publish extracted api - uses: actions/upload-artifact@v4 - with: - name: extracted-api - path: common/api + - name: Rush cspell + run: node common/scripts/install-run-rush.js cspell