Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6e1dab3

Browse files
committed
setup v0.12 release
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
1 parent0bf2091 commit6e1dab3

File tree

6 files changed

+95
-82
lines changed

6 files changed

+95
-82
lines changed

‎CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,3 +225,8 @@ Adds a review page for viewing tutorial content. The review page should be espec
225225
- continue (ctrl + enter)
226226
- Fix scroll to bottom on next level
227227
- Add a scroll indicator when content is too long
228+
229+
### [0.12.0]
230+
231+
- Change completion page to a banner that prompts the user to open a new workspace
232+
- Adds an "About" section to the tutorial side menu

‎package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"coderoad",
3-
"version":"0.11.0",
3+
"version":"0.12.0",
44
"description":"Play interactive coding tutorials in your editor",
55
"keywords": [
66
"tutorial",
@@ -35,16 +35,16 @@
3535
},
3636
"dependencies": {
3737
"@types/assert":"^1.5.1",
38-
"@types/jest":"^26.0.4",
38+
"@types/jest":"^26.0.5",
3939
"@types/jsdom":"^16.2.3",
40-
"@types/node":"^14.0.23",
40+
"@types/node":"^14.0.24",
4141
"@types/node-fetch":"^2.5.7",
4242
"@types/semver":"^7.3.1",
43-
"@typescript-eslint/eslint-plugin":"^3.6.1",
44-
"@typescript-eslint/parser":"^3.6.1",
43+
"@typescript-eslint/eslint-plugin":"^3.7.0",
44+
"@typescript-eslint/parser":"^3.7.0",
4545
"chokidar":"^3.4.1",
4646
"dotenv":"^8.2.0",
47-
"eslint":"^7.4.0",
47+
"eslint":"^7.5.0",
4848
"git-url-parse":"^11.1.2",
4949
"jest":"^26.1.0",
5050
"jsdom":"^16.3.0",

‎web-app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"coderoad-app",
3-
"version":"0.11.0",
3+
"version":"0.12.0",
44
"private":true,
55
"scripts": {
66
"build":"react-app-rewired build",
@@ -25,7 +25,7 @@
2525
"extends":"react-app"
2626
},
2727
"dependencies": {
28-
"@alifd/next":"^1.20.18",
28+
"@alifd/next":"^1.20.20",
2929
"@alifd/theme-4":"^0.3.1",
3030
"@emotion/babel-preset-css-prop":"^10.0.27",
3131
"@emotion/core":"^10.0.28",
@@ -52,10 +52,10 @@
5252
"@storybook/react":"^5.3.19",
5353
"@types/graphql":"^14.5.0",
5454
"@types/highlight.js":"^9.12.4",
55-
"@types/jest":"^26.0.4",
55+
"@types/jest":"^26.0.5",
5656
"@types/js-yaml":"^3.12.5",
5757
"@types/markdown-it":"^10.0.1",
58-
"@types/node":"^14.0.23",
58+
"@types/node":"^14.0.24",
5959
"@types/prismjs":"^1.16.1",
6060
"@types/react":"^16.9.43",
6161
"@types/react-addons-css-transition-group":"^15.0.5",

‎web-app/src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import Workspace from './components/Workspace'
66
importRoutesfrom'./Routes'
77

88
constApp=()=>(
9+
/*@ts-ignore invalid in enUS locale typings for @alifd/next@1.20.20 https://github.com/alibaba-fusion/next/commit/e3b934b */
910
<ConfigProviderlocale={enUS}>
1011
<ErrorBoundary>
1112
<Workspace>

‎web-app/yarn.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"@alifd/validate" "^1.2.0"
1111
prop-types "^15.5.8"
1212

13-
"@alifd/next@^1.20.18":
14-
version "1.20.18"
15-
resolved "https://registry.yarnpkg.com/@alifd/next/-/next-1.20.18.tgz#355d02a8ce3fe7996e52ee0295d696c8a9032060"
16-
integrity sha512-acwDvwxQFmuheMtwHcxWqwcWrPQtNDimddzK5ZV9lthonCsEWikhZq+MCKYl/UbXRuSUnnLRApAkULOrDXqeBg==
13+
"@alifd/next@^1.20.20":
14+
version "1.20.20"
15+
resolved "https://registry.yarnpkg.com/@alifd/next/-/next-1.20.20.tgz#aeebd7d036b63d3279be520284d20967d0e44e8f"
16+
integrity sha512-iACP/7wP3hXzxFcvD0J9UGlCXLtxm5pAHGEWKMOpT+B2X5b3URsTlPdZkQ2y8Sgl8MF4waLPYz3BF1DsBTZ4ew==
1717
dependencies:
1818
"@alifd/field" "~1.4.1"
1919
"@alifd/validate" "~1.2.0"
@@ -2351,10 +2351,10 @@
23512351
"@types/istanbul-lib-coverage" "*"
23522352
"@types/istanbul-lib-report" "*"
23532353

2354-
"@types/jest@^26.0.4":
2355-
version "26.0.4"
2356-
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.4.tgz#d2e513e85aca16992816f192582b5e67b0b15efb"
2357-
integrity sha512-4fQNItvelbNA9+sFgU+fhJo8ZFF+AS4Egk3GWwCW2jFtViukXbnztccafAdLhzE/0EiCogljtQQXP8aQ9J7sFg==
2354+
"@types/jest@^26.0.5":
2355+
version "26.0.5"
2356+
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.5.tgz#23a8eecf4764a770ea8d3a0d1ea16b96c822035d"
2357+
integrity sha512-heU+7w8snfwfjtcj2H458aTx3m5unIToOJhx75ebHilBiiQ39OIdA18WkG4LP08YKeAoWAGvWg8s+22w/PeJ6w==
23582358
dependencies:
23592359
jest-diff "^25.2.1"
23602360
pretty-format "^25.2.1"
@@ -2397,10 +2397,10 @@
23972397
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.0.tgz#30d2d09f623fe32cde9cb582c7a6eda2788ce4a8"
23982398
integrity sha512-WE4IOAC6r/yBZss1oQGM5zs2D7RuKR6Q+w+X2SouPofnWn+LbCqClRyhO3ZE7Ix8nmFgo/oVuuE01cJT2XB13A==
23992399

2400-
"@types/node@^14.0.23":
2401-
version "14.0.23"
2402-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.23.tgz#676fa0883450ed9da0bb24156213636290892806"
2403-
integrity sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw==
2400+
"@types/node@^14.0.24":
2401+
version "14.0.24"
2402+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.24.tgz#b0f86f58564fa02a28b68f8b55d4cdec42e3b9d6"
2403+
integrity sha512-btt/oNOiDWcSuI721MdL8VQGnjsKjlTMdrKyTcLCKeQp/n4AAMFJ961wMbp+09y8WuGPClDEv07RIItdXKIXAA==
24042404

24052405
"@types/npmlog@^4.1.2":
24062406
version "4.1.2"

‎yarn.lock

Lines changed: 67 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -570,10 +570,10 @@
570570
"@types/istanbul-lib-coverage""*"
571571
"@types/istanbul-lib-report""*"
572572

573-
"@types/jest@^26.0.4":
574-
version "26.0.4"
575-
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.4.tgz#d2e513e85aca16992816f192582b5e67b0b15efb"
576-
integrity sha512-4fQNItvelbNA9+sFgU+fhJo8ZFF+AS4Egk3GWwCW2jFtViukXbnztccafAdLhzE/0EiCogljtQQXP8aQ9J7sFg==
573+
"@types/jest@^26.0.5":
574+
version "26.0.5"
575+
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.5.tgz#23a8eecf4764a770ea8d3a0d1ea16b96c822035d"
576+
integrity sha512-heU+7w8snfwfjtcj2H458aTx3m5unIToOJhx75ebHilBiiQ39OIdA18WkG4LP08YKeAoWAGvWg8s+22w/PeJ6w==
577577
dependencies:
578578
jest-diff "^25.2.1"
579579
pretty-format "^25.2.1"
@@ -605,10 +605,10 @@
605605
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.0.tgz#30d2d09f623fe32cde9cb582c7a6eda2788ce4a8"
606606
integrity sha512-WE4IOAC6r/yBZss1oQGM5zs2D7RuKR6Q+w+X2SouPofnWn+LbCqClRyhO3ZE7Ix8nmFgo/oVuuE01cJT2XB13A==
607607

608-
"@types/node@^14.0.23":
609-
version "14.0.23"
610-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.23.tgz#676fa0883450ed9da0bb24156213636290892806"
611-
integrity sha512-Z4U8yDAl5TFkmYsZdFPdjeMa57NOvnaf1tljHzhouaPEp7LCj2JKkejpI1ODviIAQuW4CcQmxkQ77rnLsOOoKw==
608+
"@types/node@^14.0.24":
609+
version "14.0.24"
610+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.24.tgz#b0f86f58564fa02a28b68f8b55d4cdec42e3b9d6"
611+
integrity sha512-btt/oNOiDWcSuI721MdL8VQGnjsKjlTMdrKyTcLCKeQp/n4AAMFJ961wMbp+09y8WuGPClDEv07RIItdXKIXAA==
612612

613613
"@types/normalize-package-data@^2.4.0":
614614
version "2.4.0"
@@ -654,63 +654,63 @@
654654
dependencies:
655655
"@types/yargs-parser""*"
656656

657-
"@typescript-eslint/eslint-plugin@^3.6.1":
658-
version "3.6.1"
659-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.6.1.tgz#5ced8fd2087fbb83a76973dea4a0d39d9cb4a642"
660-
integrity sha512-06lfjo76naNeOMDl+mWG9Fh/a0UHKLGhin+mGaIw72FUMbMGBkdi/FEJmgEDzh4eE73KIYzHWvOCYJ0ak7nrJQ==
657+
"@typescript-eslint/eslint-plugin@^3.7.0":
658+
version "3.7.0"
659+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.7.0.tgz#0f91aa3c83d019591719e597fbdb73a59595a263"
660+
integrity sha512-4OEcPON3QIx0ntsuiuFP/TkldmBGXf0uKxPQlGtS/W2F3ndYm8Vgdpj/woPJkzUc65gd3iR+qi3K8SDQP/obFg==
661661
dependencies:
662-
"@typescript-eslint/experimental-utils""3.6.1"
662+
"@typescript-eslint/experimental-utils""3.7.0"
663663
debug "^4.1.1"
664664
functional-red-black-tree "^1.0.1"
665665
regexpp "^3.0.0"
666666
semver "^7.3.2"
667667
tsutils "^3.17.1"
668668

669-
"@typescript-eslint/experimental-utils@3.6.1":
670-
version "3.6.1"
671-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.6.1.tgz#b5a2738ebbceb3fa90c5b07d50bb1225403c4a54"
672-
integrity sha512-oS+hihzQE5M84ewXrTlVx7eTgc52eu+sVmG7ayLfOhyZmJ8Unvf3osyFQNADHP26yoThFfbxcibbO0d2FjnYhg==
669+
"@typescript-eslint/experimental-utils@3.7.0":
670+
version "3.7.0"
671+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.7.0.tgz#0ee21f6c48b2b30c63211da23827725078d5169a"
672+
integrity sha512-xpfXXAfZqhhqs5RPQBfAFrWDHoNxD5+sVB5A46TF58Bq1hRfVROrWHcQHHUM9aCBdy9+cwATcvCbRg8aIRbaHQ==
673673
dependencies:
674674
"@types/json-schema""^7.0.3"
675-
"@typescript-eslint/types""3.6.1"
676-
"@typescript-eslint/typescript-estree""3.6.1"
675+
"@typescript-eslint/types""3.7.0"
676+
"@typescript-eslint/typescript-estree""3.7.0"
677677
eslint-scope "^5.0.0"
678678
eslint-utils "^2.0.0"
679679

680-
"@typescript-eslint/parser@^3.6.1":
681-
version "3.6.1"
682-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.6.1.tgz#216e8adf4ee9c629f77c985476a2ea07fb80e1dc"
683-
integrity sha512-SLihQU8RMe77YJ/jGTqOt0lMq7k3hlPVfp7v/cxMnXA9T0bQYoMDfTsNgHXpwSJM1Iq2aAJ8WqekxUwGv5F67Q==
680+
"@typescript-eslint/parser@^3.7.0":
681+
version "3.7.0"
682+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.7.0.tgz#3e9cd9df9ea644536feb6e5acdb8279ecff96ce9"
683+
integrity sha512-2LZauVUt7jAWkcIW7djUc3kyW+fSarNEuM3RF2JdLHR9BfX/nDEnyA4/uWz0wseoWVZbDXDF7iF9Jc342flNqQ==
684684
dependencies:
685685
"@types/eslint-visitor-keys""^1.0.0"
686-
"@typescript-eslint/experimental-utils""3.6.1"
687-
"@typescript-eslint/types""3.6.1"
688-
"@typescript-eslint/typescript-estree""3.6.1"
686+
"@typescript-eslint/experimental-utils""3.7.0"
687+
"@typescript-eslint/types""3.7.0"
688+
"@typescript-eslint/typescript-estree""3.7.0"
689689
eslint-visitor-keys "^1.1.0"
690690

691-
"@typescript-eslint/types@3.6.1":
692-
version "3.6.1"
693-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.6.1.tgz#87600fe79a1874235d3cc1cf5c7e1a12eea69eee"
694-
integrity sha512-NPxd5yXG63gx57WDTW1rp0cF3XlNuuFFB5G+Kc48zZ+51ZnQn9yjDEsjTPQ+aWM+V+Z0I4kuTFKjKvgcT1F7xQ==
691+
"@typescript-eslint/types@3.7.0":
692+
version "3.7.0"
693+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.7.0.tgz#09897fab0cb95479c01166b10b2c03c224821077"
694+
integrity sha512-reCaK+hyKkKF+itoylAnLzFeNYAEktB0XVfSQvf0gcVgpz1l49Lt6Vo9x4MVCCxiDydA0iLAjTF/ODH0pbfnpg==
695695

696-
"@typescript-eslint/typescript-estree@3.6.1":
697-
version "3.6.1"
698-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.6.1.tgz#a5c91fcc5497cce7922ff86bc37d5e5891dcdefa"
699-
integrity sha512-G4XRe/ZbCZkL1fy09DPN3U0mR6SayIv1zSeBNquRFRk7CnVLgkC2ZPj8llEMJg5Y8dJ3T76SvTGtceytniaztQ==
696+
"@typescript-eslint/typescript-estree@3.7.0":
697+
version "3.7.0"
698+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.7.0.tgz#66872e6da120caa4b64e6b4ca5c8702afc74738d"
699+
integrity sha512-xr5oobkYRebejlACGr1TJ0Z/r0a2/HUf0SXqPvlgUMwiMqOCu/J+/Dr9U3T0IxpE5oLFSkqMx1FE/dKaZ8KsOQ==
700700
dependencies:
701-
"@typescript-eslint/types""3.6.1"
702-
"@typescript-eslint/visitor-keys""3.6.1"
701+
"@typescript-eslint/types""3.7.0"
702+
"@typescript-eslint/visitor-keys""3.7.0"
703703
debug "^4.1.1"
704704
glob "^7.1.6"
705705
is-glob "^4.0.1"
706706
lodash "^4.17.15"
707707
semver "^7.3.2"
708708
tsutils "^3.17.1"
709709

710-
"@typescript-eslint/visitor-keys@3.6.1":
711-
version "3.6.1"
712-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.6.1.tgz#5c57a7772f4dd623cfeacc219303e7d46f963b37"
713-
integrity sha512-qC8Olwz5ZyMTZrh4Wl3K4U6tfms0R/mzU4/5W3XeUZptVraGVmbptJbn6h2Ey6Rb3hOs3zWoAUebZk8t47KGiQ==
710+
"@typescript-eslint/visitor-keys@3.7.0":
711+
version "3.7.0"
712+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.7.0.tgz#ac0417d382a136e4571a0b0dcfe52088cb628177"
713+
integrity sha512-k5PiZdB4vklUpUX4NBncn5RBKty8G3ihTY+hqJsCdMuD0v4jofI5xuqwnVcWxfv6iTm2P/dfEa2wMUnsUY8ODw==
714714
dependencies:
715715
eslint-visitor-keys "^1.1.0"
716716

@@ -742,7 +742,7 @@ acorn@^7.1.1:
742742
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf"
743743
integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==
744744

745-
acorn@^7.2.0:
745+
acorn@^7.3.1:
746746
version "7.3.1"
747747
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd"
748748
integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==
@@ -1598,20 +1598,27 @@ eslint-utils@^2.0.0:
15981598
dependencies:
15991599
eslint-visitor-keys "^1.1.0"
16001600

1601+
eslint-utils@^2.1.0:
1602+
version "2.1.0"
1603+
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
1604+
integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
1605+
dependencies:
1606+
eslint-visitor-keys "^1.1.0"
1607+
16011608
eslint-visitor-keys@^1.1.0:
16021609
version "1.1.0"
16031610
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
16041611
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
16051612

1606-
eslint-visitor-keys@^1.2.0:
1607-
version "1.2.0"
1608-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.2.0.tgz#74415ac884874495f78ec2a97349525344c981fa"
1609-
integrity sha512-WFb4ihckKil6hu3Dp798xdzSfddwKKU3+nGniKF6HfeW6OLd2OUDEPP7TcHtB5+QXOKg2s6B2DaMPE1Nn/kxKQ==
1613+
eslint-visitor-keys@^1.3.0:
1614+
version "1.3.0"
1615+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
1616+
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
16101617

1611-
eslint@^7.4.0:
1612-
version "7.4.0"
1613-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.4.0.tgz#4e35a2697e6c1972f9d6ef2b690ad319f80f206f"
1614-
integrity sha512-gU+lxhlPHu45H3JkEGgYhWhkR9wLHHEXC9FbWFnTlEkbKyZKWgWRLgf61E8zWmBuI6g5xKBph9ltg3NtZMVF8g==
1618+
eslint@^7.5.0:
1619+
version "7.5.0"
1620+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.5.0.tgz#9ecbfad62216d223b82ac9ffea7ef3444671d135"
1621+
integrity sha512-vlUP10xse9sWt9SGRtcr1LAC67BENcQMFeV+w5EvLEoFe3xJ8cF1Skd0msziRx/VMC+72B4DxreCE+OR12OA6Q==
16151622
dependencies:
16161623
"@babel/code-frame""^7.0.0"
16171624
ajv "^6.10.0"
@@ -1621,9 +1628,9 @@ eslint@^7.4.0:
16211628
doctrine "^3.0.0"
16221629
enquirer "^2.3.5"
16231630
eslint-scope "^5.1.0"
1624-
eslint-utils "^2.0.0"
1625-
eslint-visitor-keys "^1.2.0"
1626-
espree "^7.1.0"
1631+
eslint-utils "^2.1.0"
1632+
eslint-visitor-keys "^1.3.0"
1633+
espree "^7.2.0"
16271634
esquery "^1.2.0"
16281635
esutils "^2.0.2"
16291636
file-entry-cache "^5.0.1"
@@ -1637,7 +1644,7 @@ eslint@^7.4.0:
16371644
js-yaml "^3.13.1"
16381645
json-stable-stringify-without-jsonify "^1.0.1"
16391646
levn "^0.4.1"
1640-
lodash "^4.17.14"
1647+
lodash "^4.17.19"
16411648
minimatch "^3.0.4"
16421649
natural-compare "^1.4.0"
16431650
optionator "^0.9.1"
@@ -1650,14 +1657,14 @@ eslint@^7.4.0:
16501657
text-table "^0.2.0"
16511658
v8-compile-cache "^2.0.3"
16521659

1653-
espree@^7.1.0:
1654-
version "7.1.0"
1655-
resolved "https://registry.yarnpkg.com/espree/-/espree-7.1.0.tgz#a9c7f18a752056735bf1ba14cb1b70adc3a5ce1c"
1656-
integrity sha512-dcorZSyfmm4WTuTnE5Y7MEN1DyoPYy1ZR783QW1FJoenn7RailyWFsq/UL6ZAAA7uXurN9FIpYyUs3OfiIW+Qw==
1660+
espree@^7.2.0:
1661+
version "7.2.0"
1662+
resolved "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz#1c263d5b513dbad0ac30c4991b93ac354e948d69"
1663+
integrity sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g==
16571664
dependencies:
1658-
acorn "^7.2.0"
1665+
acorn "^7.3.1"
16591666
acorn-jsx "^5.2.0"
1660-
eslint-visitor-keys "^1.2.0"
1667+
eslint-visitor-keys "^1.3.0"
16611668

16621669
esprima@^4.0.0, esprima@^4.0.1:
16631670
version "4.0.1"
@@ -3033,7 +3040,7 @@ lodash.sortby@^4.7.0:
30333040
resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
30343041
integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
30353042

3036-
lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15:
3043+
lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19:
30373044
version "4.17.19"
30383045
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
30393046
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp