Skip to content

Commit 5cfc0e3

Browse files
authored
Merge branch 'main' into main
2 parents 02c11d5 + 070a5a3 commit 5cfc0e3

File tree

5 files changed

+112
-81
lines changed

5 files changed

+112
-81
lines changed

.github/workflows/security.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
fetch-depth: 0
6565

6666
- name: Run Trivy vulnerability scanner in repo mode
67-
uses: aquasecurity/trivy-action@e5f43133f6e8736992c9f3c1b3296e24b37e17f2
67+
uses: aquasecurity/trivy-action@41f05d9ecffa2ed3f1580af306000f734b733e54
6868
with:
6969
scan-type: "fs"
7070
scan-ref: "."

.github/workflows/trivy-docker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@v3
5252

5353
- name: Run Trivy vulnerability scanner in image mode
54-
uses: aquasecurity/trivy-action@e5f43133f6e8736992c9f3c1b3296e24b37e17f2
54+
uses: aquasecurity/trivy-action@41f05d9ecffa2ed3f1580af306000f734b733e54
5555
with:
5656
image-ref: "docker.io/codercom/code-server:latest"
5757
ignore-unfixed: true

docs/guide.md

+22
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- [Proxying to create a React app](#proxying-to-create-a-react-app)
2020
- [Proxying to a Vue app](#proxying-to-a-vue-app)
2121
- [Proxying to an Angular app](#proxying-to-an-angular-app)
22+
- [Proxying to a Svelte app](#proxying-to-a-svelte-app)
2223
- [SSH into code-server on VS Code](#ssh-into-code-server-on-vs-code)
2324
- [Option 1: cloudflared tunnel](#option-1-cloudflared-tunnel)
2425
- [Option 2: ngrok tunnel](#option-2-ngrok-tunnel)
@@ -414,6 +415,27 @@ In order to use code-server's built-in proxy with Angular, you need to make the
414415

415416
For additional context, see [this GitHub Discussion](https://github.com/coder/code-server/discussions/5439#discussioncomment-3371983).
416417

418+
### Proxying to a Svelte app
419+
420+
In order to use code-server's built-in proxy with Svelte, you need to make the following changes in your app:
421+
422+
1. Add `svelte.config.js` if you don't already have one
423+
2. Update the values to match this (you can use any free port):
424+
425+
```js
426+
const config = {
427+
kit: {
428+
paths: {
429+
base: "/absproxy/5173",
430+
},
431+
},
432+
}
433+
```
434+
435+
3. Access app at `<code-server-root>/absproxy/5173/` e.g. `http://localhost:8080/absproxy/5173/
436+
437+
For additional context, see [this Github Issue](https://github.com/sveltejs/kit/issues/2958)
438+
417439
## SSH into code-server on VS Code
418440

419441
[![SSH](https://img.shields.io/badge/SSH-363636?style=for-the-badge&logo=GNU+Bash&logoColor=ffffff)](https://ohmyz.sh/) [![Terminal](https://img.shields.io/badge/Terminal-2E2E2E?style=for-the-badge&logo=Windows+Terminal&logoColor=ffffff)](https://img.shields.io/badge/Terminal-2E2E2E?style=for-the-badge&logo=Windows+Terminal&logoColor=ffffff) [![Visual Studio Code](https://img.shields.io/badge/Visual_Studio_Code-007ACC?style=for-the-badge&logo=Visual+Studio+Code&logoColor=ffffff)](vscode:extension/ms-vscode-remote.remote-ssh)

test/yarn.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -2936,16 +2936,16 @@ saxes@^5.0.1:
29362936
xmlchars "^2.2.0"
29372937

29382938
[email protected], semver@^7.3.2, semver@^7.3.5:
2939-
version "7.3.5"
2940-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
2941-
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
2939+
version "7.5.4"
2940+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
2941+
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
29422942
dependencies:
29432943
lru-cache "^6.0.0"
29442944

29452945
semver@^6.0.0, semver@^6.3.0:
2946-
version "6.3.0"
2947-
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2948-
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2946+
version "6.3.1"
2947+
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
2948+
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
29492949

29502950
set-blocking@^2.0.0:
29512951
version "2.0.0"

yarn.lock

+82-73
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
# yarn lockfile v1
33

44

5+
"@aashutoshrathi/word-wrap@^1.2.3":
6+
version "1.2.6"
7+
resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
8+
integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
9+
510
"@babel/runtime@^7.20.6":
611
version "7.20.7"
712
resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
@@ -33,30 +38,30 @@
3338
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz#3e61c564fcd6b921cb789838631c5ee44df09403"
3439
integrity sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==
3540

36-
"@eslint/eslintrc@^2.0.2":
37-
version "2.0.2"
38-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.2.tgz#01575e38707add677cf73ca1589abba8da899a02"
39-
integrity sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==
41+
"@eslint/eslintrc@^2.1.0":
42+
version "2.1.0"
43+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d"
44+
integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==
4045
dependencies:
4146
ajv "^6.12.4"
4247
debug "^4.3.2"
43-
espree "^9.5.1"
48+
espree "^9.6.0"
4449
globals "^13.19.0"
4550
ignore "^5.2.0"
4651
import-fresh "^3.2.1"
4752
js-yaml "^4.1.0"
4853
minimatch "^3.1.2"
4954
strip-json-comments "^3.1.1"
5055

51-
"@eslint/js@8.39.0":
52-
version "8.39.0"
53-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.39.0.tgz#58b536bcc843f4cd1e02a7e6171da5c040f4d44b"
54-
integrity sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==
56+
"@eslint/js@8.44.0":
57+
version "8.44.0"
58+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af"
59+
integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==
5560

56-
"@humanwhocodes/config-array@^0.11.8":
57-
version "0.11.8"
58-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
59-
integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
61+
"@humanwhocodes/config-array@^0.11.10":
62+
version "0.11.10"
63+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
64+
integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
6065
dependencies:
6166
"@humanwhocodes/object-schema" "^1.2.1"
6267
debug "^4.1.1"
@@ -366,13 +371,13 @@
366371
tsutils "^3.21.0"
367372

368373
"@typescript-eslint/parser@^5.41.0":
369-
version "5.59.11"
370-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.11.tgz#af7d4b7110e3068ce0b97550736de455e4250103"
371-
integrity sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==
374+
version "5.61.0"
375+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.61.0.tgz#7fbe3e2951904bb843f8932ebedd6e0635bffb70"
376+
integrity sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==
372377
dependencies:
373-
"@typescript-eslint/scope-manager" "5.59.11"
374-
"@typescript-eslint/types" "5.59.11"
375-
"@typescript-eslint/typescript-estree" "5.59.11"
378+
"@typescript-eslint/scope-manager" "5.61.0"
379+
"@typescript-eslint/types" "5.61.0"
380+
"@typescript-eslint/typescript-estree" "5.61.0"
376381
debug "^4.3.4"
377382

378383
"@typescript-eslint/[email protected]":
@@ -383,13 +388,13 @@
383388
"@typescript-eslint/types" "5.59.1"
384389
"@typescript-eslint/visitor-keys" "5.59.1"
385390

386-
"@typescript-eslint/scope-manager@5.59.11":
387-
version "5.59.11"
388-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.11.tgz#5d131a67a19189c42598af9fb2ea1165252001ce"
389-
integrity sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==
391+
"@typescript-eslint/scope-manager@5.61.0":
392+
version "5.61.0"
393+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.61.0.tgz#b670006d069c9abe6415c41f754b1b5d949ef2b2"
394+
integrity sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==
390395
dependencies:
391-
"@typescript-eslint/types" "5.59.11"
392-
"@typescript-eslint/visitor-keys" "5.59.11"
396+
"@typescript-eslint/types" "5.61.0"
397+
"@typescript-eslint/visitor-keys" "5.61.0"
393398

394399
"@typescript-eslint/[email protected]":
395400
version "5.59.1"
@@ -406,10 +411,10 @@
406411
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.1.tgz#03f3fedd1c044cb336ebc34cc7855f121991f41d"
407412
integrity sha512-dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg==
408413

409-
"@typescript-eslint/types@5.59.11":
410-
version "5.59.11"
411-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.11.tgz#1a9018fe3c565ba6969561f2a49f330cf1fe8db1"
412-
integrity sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==
414+
"@typescript-eslint/types@5.61.0":
415+
version "5.61.0"
416+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.61.0.tgz#e99ff11b5792d791554abab0f0370936d8ca50c0"
417+
integrity sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==
413418

414419
"@typescript-eslint/[email protected]":
415420
version "5.59.1"
@@ -424,13 +429,13 @@
424429
semver "^7.3.7"
425430
tsutils "^3.21.0"
426431

427-
"@typescript-eslint/typescript-estree@5.59.11":
428-
version "5.59.11"
429-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.11.tgz#b2caaa31725e17c33970c1197bcd54e3c5f42b9f"
430-
integrity sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==
432+
"@typescript-eslint/typescript-estree@5.61.0":
433+
version "5.61.0"
434+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.61.0.tgz#4c7caca84ce95bb41aa585d46a764bcc050b92f3"
435+
integrity sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==
431436
dependencies:
432-
"@typescript-eslint/types" "5.59.11"
433-
"@typescript-eslint/visitor-keys" "5.59.11"
437+
"@typescript-eslint/types" "5.61.0"
438+
"@typescript-eslint/visitor-keys" "5.61.0"
434439
debug "^4.3.4"
435440
globby "^11.1.0"
436441
is-glob "^4.0.3"
@@ -459,12 +464,12 @@
459464
"@typescript-eslint/types" "5.59.1"
460465
eslint-visitor-keys "^3.3.0"
461466

462-
"@typescript-eslint/visitor-keys@5.59.11":
463-
version "5.59.11"
464-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.11.tgz#dca561ddad169dc27d62396d64f45b2d2c3ecc56"
465-
integrity sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==
467+
"@typescript-eslint/visitor-keys@5.61.0":
468+
version "5.61.0"
469+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.61.0.tgz#c79414fa42158fd23bd2bb70952dc5cdbb298140"
470+
integrity sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==
466471
dependencies:
467-
"@typescript-eslint/types" "5.59.11"
472+
"@typescript-eslint/types" "5.61.0"
468473
eslint-visitor-keys "^3.3.0"
469474

470475
JSONStream@^1.3.5:
@@ -498,11 +503,16 @@ acorn-walk@^8.1.1, acorn-walk@^8.2.0:
498503
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
499504
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
500505

501-
acorn@^8.4.1, acorn@^8.7.0, acorn@^8.8.0:
506+
acorn@^8.4.1, acorn@^8.7.0:
502507
version "8.8.2"
503508
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
504509
integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
505510

511+
acorn@^8.9.0:
512+
version "8.10.0"
513+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
514+
integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
515+
506516
agent-base@6:
507517
version "6.0.2"
508518
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
@@ -1325,21 +1335,21 @@ eslint-scope@^7.2.0:
13251335
esrecurse "^4.3.0"
13261336
estraverse "^5.2.0"
13271337

1328-
eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.0:
1329-
version "3.4.0"
1330-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz#c7f0f956124ce677047ddbc192a68f999454dedc"
1331-
integrity sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==
1338+
eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
1339+
version "3.4.1"
1340+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994"
1341+
integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==
13321342

13331343
eslint@^8.26.0:
1334-
version "8.39.0"
1335-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.39.0.tgz#7fd20a295ef92d43809e914b70c39fd5a23cf3f1"
1336-
integrity sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==
1344+
version "8.44.0"
1345+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.44.0.tgz#51246e3889b259bbcd1d7d736a0c10add4f0e500"
1346+
integrity sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==
13371347
dependencies:
13381348
"@eslint-community/eslint-utils" "^4.2.0"
13391349
"@eslint-community/regexpp" "^4.4.0"
1340-
"@eslint/eslintrc" "^2.0.2"
1341-
"@eslint/js" "8.39.0"
1342-
"@humanwhocodes/config-array" "^0.11.8"
1350+
"@eslint/eslintrc" "^2.1.0"
1351+
"@eslint/js" "8.44.0"
1352+
"@humanwhocodes/config-array" "^0.11.10"
13431353
"@humanwhocodes/module-importer" "^1.0.1"
13441354
"@nodelib/fs.walk" "^1.2.8"
13451355
ajv "^6.10.0"
@@ -1349,41 +1359,40 @@ eslint@^8.26.0:
13491359
doctrine "^3.0.0"
13501360
escape-string-regexp "^4.0.0"
13511361
eslint-scope "^7.2.0"
1352-
eslint-visitor-keys "^3.4.0"
1353-
espree "^9.5.1"
1362+
eslint-visitor-keys "^3.4.1"
1363+
espree "^9.6.0"
13541364
esquery "^1.4.2"
13551365
esutils "^2.0.2"
13561366
fast-deep-equal "^3.1.3"
13571367
file-entry-cache "^6.0.1"
13581368
find-up "^5.0.0"
13591369
glob-parent "^6.0.2"
13601370
globals "^13.19.0"
1361-
grapheme-splitter "^1.0.4"
1371+
graphemer "^1.4.0"
13621372
ignore "^5.2.0"
13631373
import-fresh "^3.0.0"
13641374
imurmurhash "^0.1.4"
13651375
is-glob "^4.0.0"
13661376
is-path-inside "^3.0.3"
1367-
js-sdsl "^4.1.4"
13681377
js-yaml "^4.1.0"
13691378
json-stable-stringify-without-jsonify "^1.0.1"
13701379
levn "^0.4.1"
13711380
lodash.merge "^4.6.2"
13721381
minimatch "^3.1.2"
13731382
natural-compare "^1.4.0"
1374-
optionator "^0.9.1"
1383+
optionator "^0.9.3"
13751384
strip-ansi "^6.0.1"
13761385
strip-json-comments "^3.1.0"
13771386
text-table "^0.2.0"
13781387

1379-
espree@^9.5.1:
1380-
version "9.5.1"
1381-
resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.1.tgz#4f26a4d5f18905bf4f2e0bd99002aab807e96dd4"
1382-
integrity sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==
1388+
espree@^9.6.0:
1389+
version "9.6.0"
1390+
resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.0.tgz#80869754b1c6560f32e3b6929194a3fe07c5b82f"
1391+
integrity sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==
13831392
dependencies:
1384-
acorn "^8.8.0"
1393+
acorn "^8.9.0"
13851394
acorn-jsx "^5.3.2"
1386-
eslint-visitor-keys "^3.4.0"
1395+
eslint-visitor-keys "^3.4.1"
13871396

13881397
esprima@^4.0.0, esprima@^4.0.1:
13891398
version "4.0.1"
@@ -1808,6 +1817,11 @@ grapheme-splitter@^1.0.4:
18081817
resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
18091818
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
18101819

1820+
graphemer@^1.4.0:
1821+
version "1.4.0"
1822+
resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
1823+
integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
1824+
18111825
has-bigints@^1.0.2:
18121826
version "1.0.2"
18131827
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
@@ -2211,11 +2225,6 @@ jju@^1.4.0:
22112225
resolved "https://registry.yarnpkg.com/jju/-/jju-1.4.0.tgz#a3abe2718af241a2b2904f84a625970f389ae32a"
22122226
integrity sha1-o6vicYryQaKykE+EpiWXDzia4yo=
22132227

2214-
js-sdsl@^4.1.4:
2215-
version "4.1.5"
2216-
resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"
2217-
integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==
2218-
22192228
js-yaml@^4.0.0, js-yaml@^4.1.0:
22202229
version "4.1.0"
22212230
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
@@ -2758,17 +2767,17 @@ optionator@^0.8.1:
27582767
type-check "~0.3.2"
27592768
word-wrap "~1.2.3"
27602769

2761-
optionator@^0.9.1:
2762-
version "0.9.1"
2763-
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
2764-
integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
2770+
optionator@^0.9.3:
2771+
version "0.9.3"
2772+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64"
2773+
integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
27652774
dependencies:
2775+
"@aashutoshrathi/word-wrap" "^1.2.3"
27662776
deep-is "^0.1.3"
27672777
fast-levenshtein "^2.0.6"
27682778
levn "^0.4.1"
27692779
prelude-ls "^1.2.1"
27702780
type-check "^0.4.0"
2771-
word-wrap "^1.2.3"
27722781

27732782
os-tmpdir@^1.0.1:
27742783
version "1.0.2"
@@ -3753,7 +3762,7 @@ wide-align@^1.1.2:
37533762
dependencies:
37543763
string-width "^1.0.2 || 2 || 3 || 4"
37553764

3756-
word-wrap@^1.2.3, word-wrap@~1.2.3:
3765+
word-wrap@~1.2.3:
37573766
version "1.2.3"
37583767
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
37593768
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==

0 commit comments

Comments
 (0)