Skip to content

Commit 9232519

Browse files
authored
fix(deps): update to kuromojin@3 (#20)
BREAKING CHANGE: direct require user need to default import
1 parent 6037f58 commit 9232519

8 files changed

+133
-77
lines changed

.github/workflows/test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: test
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
name: "Test on Node.js ${{ matrix.node-version }}"
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
node-version: [12, 14]
10+
steps:
11+
- name: checkout
12+
uses: actions/checkout@v2
13+
- name: setup Node.js ${{ matrix.node-version }}
14+
uses: actions/setup-node@v2
15+
with:
16+
node-version: ${{ matrix.node-version }}
17+
- name: Install
18+
run: yarn install
19+
- name: Test
20+
run: yarn test

.travis.yml

-3
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# textlint-rule-ja-no-abusage [![Build Status](https://travis-ci.org/textlint-ja/textlint-rule-ja-no-abusage.svg?branch=master)](https://travis-ci.org/textlint-ja/textlint-rule-ja-no-abusage) [![Gitter](https://badges.gitter.im/textlint-ja/textlint-ja.svg)](https://gitter.im/textlint-ja/textlint-ja)
1+
# textlint-rule-ja-no-abusage [![Actions Status: test](https://github.com/textlint-ja/textlint-rule-ja-no-abusage/workflows/test/badge.svg)](https://github.com/textlint-ja/textlint-rule-ja-no-abusage/actions?query=workflow%3A"test")
22

33
よくある誤用をチェックするtextlintルール
44

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
"textlintrule"
3434
],
3535
"devDependencies": {
36-
"@textlint/types": "^1.2.2",
37-
"@types/node": "^12.11.1",
36+
"@textlint/types": "^1.5.4",
37+
"@types/node": "^14.14.41",
3838
"textlint-scripts": "^3.0.0",
39-
"ts-node": "^8.4.1",
40-
"typescript": "^3.6.4"
39+
"ts-node": "^9.1.1",
40+
"typescript": "^4.2.4"
4141
},
4242
"dependencies": {
43-
"kuromojin": "^2.0.0",
44-
"morpheme-match-textlint": "^2.0.3",
45-
"textlint-rule-prh": "^5.2.1"
43+
"kuromojin": "^3.0.0",
44+
"morpheme-match-textlint": "^2.0.6",
45+
"textlint-rule-prh": "^5.3.0"
4646
}
4747
}

src/textlint-rule-ja-no-abusage.ts

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
// LICENSE : MIT
22
"use strict";
3-
import {createTextlintMatcher} from "morpheme-match-textlint"
3+
import { createTextlintMatcher } from "morpheme-match-textlint"
44

55
import path from "path";
66
import fs from "fs";
77

8-
import {tokenize} from "kuromojin";
9-
import {TextlintRuleReporter} from "@textlint/types";
8+
import { tokenize } from "kuromojin";
9+
import { TextlintRuleReporter } from "@textlint/types";
1010
import dictionaryList from "./dictionary";
11+
// @ts-ignore
12+
import prh from "textlint-rule-prh";
1113

12-
const prh = require("textlint-rule-prh");
1314
const reporter: TextlintRuleReporter = (context) => {
14-
const {Syntax, RuleError, report, fixer, getSource} = context;
15+
const { Syntax, RuleError, report, fixer, getSource } = context;
1516
const matcherList = createTextlintMatcher({
1617
tokenize: tokenize,
1718
dictionaries: dictionaryList
1819
});
1920
const prhLinter = prh.linter;
2021
const prhStr = prhLinter(context, {
2122
ruleContents: [
22-
fs.readFileSync(path.join(__dirname, "..", "dict", "prh.yml"),"utf-8")
23+
fs.readFileSync(path.join(__dirname, "..", "dict", "prh.yml"), "utf-8")
2324
]
2425
});
2526
return {
@@ -44,7 +45,8 @@ const reporter: TextlintRuleReporter = (context) => {
4445
}
4546
}
4647
};
47-
module.exports = {
48+
49+
export default {
4850
linter: reporter,
4951
fixer: reporter
5052
};

test/no-confusing-adjust-and-apply-test.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// LICENSE : MIT
2-
"use strict";
3-
const TextLintTester = require("textlint-tester");
1+
import rule from "../src/textlint-rule-ja-no-abusage";
2+
import TextLintTester from "textlint-tester";
3+
44
const tester = new TextLintTester();
5-
// rule
6-
const rule = require("../src/textlint-rule-ja-no-abusage");
75
// ruleName, rule, { valid, invalid }
86
tester.run("textlint-rule-no-confusing-adjust-and-apply", rule, {
97
valid: [

test/no-variable-test.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// LICENSE : MIT
22
"use strict";
33
import TextLintTester from "textlint-tester";
4-
const tester = new TextLintTester();
54
// rule
6-
const rule = require("../src/textlint-rule-ja-no-abusage");
5+
import rule from "../src/textlint-rule-ja-no-abusage";
6+
7+
const tester = new TextLintTester();
78
// ruleName, rule, { valid, invalid }
89
tester.run("可変", rule, {
910
valid: [
@@ -20,4 +21,4 @@ tester.run("可変", rule, {
2021
]
2122
}
2223
]
23-
});
24+
});

yarn.lock

+89-51
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,11 @@
258258
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81"
259259
integrity sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==
260260

261+
"@babel/parser@^7.7.5":
262+
version "7.13.16"
263+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.16.tgz#0f18179b0448e6939b1f3f5c4c355a3a9bcdfd37"
264+
integrity sha512-6bAg36mCwuqLO0hbR+z7PHuqWiCeP7Dzg73OpQwsAB1Eb8HnGEz5xYBzCfbu+YjoaJsJs+qheDxVAuqbt3ILEw==
265+
261266
"@babel/plugin-proposal-async-generator-functions@^7.2.0":
262267
version "7.2.0"
263268
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
@@ -718,6 +723,11 @@
718723
resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.2.5.tgz#ae13981bc8711c98313a6ac1c361194d6bf2d39b"
719724
integrity sha512-+rEx4jLOeZpUcdvll7jEg/7hNbwYvHWFy4IGW/tk2JdbyB3SJVyIP6arAwzTH/sp/pO9jftfyZnRj4//sLbLvQ==
720725

726+
"@textlint/ast-node-types@^4.4.2":
727+
version "4.4.2"
728+
resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.4.2.tgz#d3fda5c9086baba04bc75440039ccf18415c8446"
729+
integrity sha512-m5brKbI7UY/Q8sbIZ7z1KB8ls04nRILshz5fPQ4EZ04jL19qrrUHJR8A6nK3vJ/GelkDWl4I0VDYSAjLEFQV8g==
730+
721731
"@textlint/ast-traverse@^2.1.6":
722732
version "2.1.6"
723733
resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-2.1.6.tgz#ce68cdcdf12776fa6161161b0ada002e9bd6beab"
@@ -832,6 +842,13 @@
832842
dependencies:
833843
"@textlint/ast-node-types" "^4.2.5"
834844

845+
"@textlint/types@^1.5.4":
846+
version "1.5.4"
847+
resolved "https://registry.yarnpkg.com/@textlint/types/-/types-1.5.4.tgz#4ebd6b052bb329810949516412ad2b285b04dc02"
848+
integrity sha512-bhSrOjW8AFSa/xf6lYZ2akE0j+4O/WEAA2S/R8RrjNMkA5Az2j57mxPNpqMhEeyHDkpzN/coIlqUwgYvcJHv1A==
849+
dependencies:
850+
"@textlint/ast-node-types" "^4.4.2"
851+
835852
"@textlint/utils@^1.0.3":
836853
version "1.0.3"
837854
resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-1.0.3.tgz#65196f21a5c1884b2dc6088484063f9ad52dfb67"
@@ -842,10 +859,10 @@
842859
resolved "https://registry.yarnpkg.com/@types/bluebird/-/bluebird-3.5.28.tgz#04c1a520ff076649236bc8ca21198542ce2bdb09"
843860
integrity sha512-0Vk/kqkukxPKSzP9c8WJgisgGDx5oZDbsLLWIP5t70yThO/YleE+GEm2S1GlRALTaack3O7U5OS5qEm7q2kciA==
844861

845-
"@types/node@^12.11.1":
846-
version "12.11.1"
847-
resolved "https://registry.yarnpkg.com/@types/node/-/node-12.11.1.tgz#1fd7b821f798b7fa29f667a1be8f3442bb8922a3"
848-
integrity sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A==
862+
"@types/node@^14.14.41":
863+
version "14.14.41"
864+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.41.tgz#d0b939d94c1d7bd53d04824af45f1139b8c45615"
865+
integrity sha512-dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g==
849866

850867
abbrev@1:
851868
version "1.1.1"
@@ -1309,6 +1326,11 @@ core-util-is@~1.0.0:
13091326
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
13101327
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
13111328

1329+
create-require@^1.1.0:
1330+
version "1.1.1"
1331+
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
1332+
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
1333+
13121334
cross-spawn@^7.0.1:
13131335
version "7.0.1"
13141336
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14"
@@ -2188,21 +2210,22 @@ kind-of@^6.0.0, kind-of@^6.0.2:
21882210
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
21892211
integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==
21902212

2191-
2192-
version "0.1.1"
2193-
resolved "https://registry.yarnpkg.com/kuromoji/-/kuromoji-0.1.1.tgz#4aabf39bcced8b8ad92d007a04a26be6da8477c9"
2194-
integrity sha1-Sqvzm8zti4rZLQB6BKJr5tqEd8k=
2213+
2214+
version "0.1.2"
2215+
resolved "https://registry.yarnpkg.com/kuromoji/-/kuromoji-0.1.2.tgz#293f0d6706df006112137980588d5daac26d0790"
2216+
integrity sha512-V0dUf+C2LpcPEXhoHLMAop/bOht16Dyr+mDiIE39yX3vqau7p80De/koFqpiTcL1zzdZlc3xuHZ8u5gjYRfFaQ==
21952217
dependencies:
21962218
async "^2.0.1"
21972219
doublearray "0.0.2"
2198-
zlibjs "^0.2.0"
2220+
zlibjs "^0.3.1"
21992221

2200-
kuromojin@^2.0.0:
2201-
version "2.0.0"
2202-
resolved "https://registry.yarnpkg.com/kuromojin/-/kuromojin-2.0.0.tgz#23e74a5ed2578432c9703ae75a69ba0a09ccb12d"
2203-
integrity sha512-60j/yLkFSc4t4roj8tI8ZNNSiAFnrkgXw8SqXz/9nakfs6mkCvPbrd7S8LDr4YNwEt1IyLys5JQTR9EnYyGHhA==
2222+
kuromojin@^3.0.0:
2223+
version "3.0.0"
2224+
resolved "https://registry.yarnpkg.com/kuromojin/-/kuromojin-3.0.0.tgz#54a1a6643110f49f741c4beb82fef400d1cd498b"
2225+
integrity sha512-3h3qnn/NVVhqoKFP4oc7e6apO2B01Atc056oiVlIY7Uoup4rhrnBe28g3y9lK1HTmLDQEejvXB+3I3qxAneF7A==
22042226
dependencies:
2205-
kuromoji "0.1.1"
2227+
kuromoji "0.1.2"
2228+
lru_map "^0.4.1"
22062229

22072230
levn@~0.3.0:
22082231
version "0.3.0"
@@ -2283,6 +2306,11 @@ loud-rejection@^1.0.0:
22832306
currently-unhandled "^0.4.1"
22842307
signal-exit "^3.0.0"
22852308

2309+
lru_map@^0.4.1:
2310+
version "0.4.1"
2311+
resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.4.1.tgz#f7b4046283c79fb7370c36f8fca6aee4324b0a98"
2312+
integrity sha512-I+lBvqMMFfqaV8CJCISjI3wbjmwVu/VyOoU7+qtu9d7ioW5klMgsTTiUOUp+DJvfTTzKXoPbyC6YfgkNcyPSOg==
2313+
22862314
make-dir@^2.0.0:
22872315
version "2.1.0"
22882316
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
@@ -2448,25 +2476,25 @@ moment@^2.13.0:
24482476
resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"
24492477
integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==
24502478

2451-
morpheme-match-all@^2.0.1:
2452-
version "2.0.1"
2453-
resolved "https://registry.yarnpkg.com/morpheme-match-all/-/morpheme-match-all-2.0.1.tgz#b520262f9026a51ec102687bb36bcf07284e54c4"
2454-
integrity sha512-KrVokpD3Fj5g8UfU8uqFERNaJJFwEikRRZY1BAUjGtbNe7RYMxc+MzwcWxL9kcJKigU0Qan9m1jAbRUhXVPhqw==
2479+
morpheme-match-all@^2.0.5:
2480+
version "2.0.5"
2481+
resolved "https://registry.yarnpkg.com/morpheme-match-all/-/morpheme-match-all-2.0.5.tgz#d4a005f7b6da845664aced1b5892f1580cb5eedc"
2482+
integrity sha512-a6B6Nh4AhjMoEzVz8NOT5M9f3XwFVPM395gqnFNUXG/KTqQFTb9qM5JJFHJe+SvWfRVXTZSejyXNt+h+jmHUuQ==
24552483
dependencies:
2456-
morpheme-match "^2.0.0"
2484+
morpheme-match "^2.0.4"
24572485

2458-
morpheme-match-textlint@^2.0.3:
2459-
version "2.0.3"
2460-
resolved "https://registry.yarnpkg.com/morpheme-match-textlint/-/morpheme-match-textlint-2.0.3.tgz#8740848bc6b0b04695dc985a61ece346bd1ac7b4"
2461-
integrity sha512-OCz4/PsQzOrZO5JDLF/IIynvArhnSfCr4jHiTXhy0Gsz3yGtYHUbaZZFFoqCBD66+EbCUeMYK4E8CkMhgJ3+Dw==
2486+
morpheme-match-textlint@^2.0.6:
2487+
version "2.0.6"
2488+
resolved "https://registry.yarnpkg.com/morpheme-match-textlint/-/morpheme-match-textlint-2.0.6.tgz#68921c9ab333c7bc32643991bb19765683d09769"
2489+
integrity sha512-CX+iQaUjjPMLvas+hZ8zg6Csxx5j1RLaytr+5w6lpBi/oTEV2pv6sgW5Vu3+pNJHbYcaqcuofQZsKocMNUNH8g==
24622490
dependencies:
2463-
morpheme-match "^2.0.0"
2464-
morpheme-match-all "^2.0.1"
2491+
morpheme-match "^2.0.4"
2492+
morpheme-match-all "^2.0.5"
24652493

2466-
morpheme-match@^2.0.0:
2467-
version "2.0.0"
2468-
resolved "https://registry.yarnpkg.com/morpheme-match/-/morpheme-match-2.0.0.tgz#d95916683e119d916335ffe54e79dfb0b2ceee6a"
2469-
integrity sha512-6k8vkOliZVX4p3Ufknnlv+QshCRdkxc72b7MVq3Zo8l5dBVLuvM7L7VPnaQJwsWntI3xLLDzDLy84YMHrl35Qw==
2494+
morpheme-match@^2.0.4:
2495+
version "2.0.4"
2496+
resolved "https://registry.yarnpkg.com/morpheme-match/-/morpheme-match-2.0.4.tgz#4ce77a4d6b51c0b33b3ca6d398363c42756b0c99"
2497+
integrity sha512-C3U5g2h47dpztGVePLA8w2O1aQEvuJORwIcahWaCG91YPrq+0u7qcPsF9Nqqe8noFvHwgO7b2EEk3iPnYuGTew==
24702498

24712499
24722500
version "2.0.0"
@@ -2906,7 +2934,7 @@ prelude-ls@~1.1.2:
29062934
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
29072935
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
29082936

2909-
prh@^5.4.3:
2937+
prh@^5.4.4:
29102938
version "5.4.4"
29112939
resolved "https://registry.yarnpkg.com/prh/-/prh-5.4.4.tgz#5b618213a187f3580f262f4e0f79e8e8561ea179"
29122940
integrity sha512-UATF+R/2H8owxwPvF12Knihu9aYGTuZttGHrEEq5NBWz38mREh23+WvCVKX3fhnIZIMV7ye6E1fnqAl+V6WYEw==
@@ -3297,7 +3325,15 @@ source-map-resolve@^0.5.0:
32973325
source-map-url "^0.4.0"
32983326
urix "^0.1.0"
32993327

3300-
source-map-support@^0.5.6, source-map-support@^0.5.9:
3328+
source-map-support@^0.5.17:
3329+
version "0.5.19"
3330+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
3331+
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
3332+
dependencies:
3333+
buffer-from "^1.0.0"
3334+
source-map "^0.6.0"
3335+
3336+
source-map-support@^0.5.9:
33013337
version "0.5.13"
33023338
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932"
33033339
integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==
@@ -3540,12 +3576,13 @@ textlint-rule-helper@^2.1.1:
35403576
structured-source "^3.0.2"
35413577
unist-util-visit "^1.1.0"
35423578

3543-
textlint-rule-prh@^5.2.1:
3544-
version "5.2.1"
3545-
resolved "https://registry.yarnpkg.com/textlint-rule-prh/-/textlint-rule-prh-5.2.1.tgz#dcbb3ee674a9c63e7ba71f73b31d675571b874fc"
3546-
integrity sha512-RlVQRok7GnmuuCrNRSYbFqcpzJkH1g6OrVVrGE+S9drT1TzgsSSM8NkAQlP6kFnQ7fN4V7g4j6JBg0N3ArBpCg==
3579+
textlint-rule-prh@^5.3.0:
3580+
version "5.3.0"
3581+
resolved "https://registry.yarnpkg.com/textlint-rule-prh/-/textlint-rule-prh-5.3.0.tgz#c3a002e3e1b59751eb6b93dff81810caeb764a9f"
3582+
integrity sha512-gdod+lL1SWUDyXs1ICEwvQawaSshT3mvPGufBIjF2R5WFPdKQDMsiuzsjkLm+aF+9d97dA6pFsiyC8gSW7mSgg==
35473583
dependencies:
3548-
prh "^5.4.3"
3584+
"@babel/parser" "^7.7.5"
3585+
prh "^5.4.4"
35493586
textlint-rule-helper "^2.1.1"
35503587
untildify "^3.0.3"
35513588

@@ -3672,16 +3709,17 @@ try-resolve@^1.0.1:
36723709
resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912"
36733710
integrity sha1-z95vq9ctY+V5fPqrhzq76OcA6RI=
36743711

3675-
ts-node@^8.4.1:
3676-
version "8.4.1"
3677-
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.4.1.tgz#270b0dba16e8723c9fa4f9b4775d3810fd994b4f"
3678-
integrity sha512-5LpRN+mTiCs7lI5EtbXmF/HfMeCjzt7DH9CZwtkr6SywStrNQC723wG+aOWFiLNn7zT3kD/RnFqi3ZUfr4l5Qw==
3712+
ts-node@^9.1.1:
3713+
version "9.1.1"
3714+
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d"
3715+
integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
36793716
dependencies:
36803717
arg "^4.1.0"
3718+
create-require "^1.1.0"
36813719
diff "^4.0.1"
36823720
make-error "^1.1.1"
3683-
source-map-support "^0.5.6"
3684-
yn "^3.0.0"
3721+
source-map-support "^0.5.17"
3722+
yn "3.1.1"
36853723

36863724
type-check@~0.3.2:
36873725
version "0.3.2"
@@ -3695,10 +3733,10 @@ typedarray@^0.0.6:
36953733
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
36963734
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
36973735

3698-
typescript@^3.6.4:
3699-
version "3.6.4"
3700-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.4.tgz#b18752bb3792bc1a0281335f7f6ebf1bbfc5b91d"
3701-
integrity sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==
3736+
typescript@^4.2.4:
3737+
version "4.2.4"
3738+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961"
3739+
integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==
37023740

37033741
unherit@^1.0.4:
37043742
version "1.1.2"
@@ -3962,12 +4000,12 @@ [email protected], yargs@^13.3.0:
39624000
y18n "^4.0.0"
39634001
yargs-parser "^13.1.1"
39644002

3965-
yn@^3.0.0:
4003+
yn@3.1.1:
39664004
version "3.1.1"
39674005
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
39684006
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
39694007

3970-
zlibjs@^0.2.0:
3971-
version "0.2.0"
3972-
resolved "https://registry.yarnpkg.com/zlibjs/-/zlibjs-0.2.0.tgz#ae20f06243293d85c255563189f9b12f5b3ba1a0"
3973-
integrity sha1-riDwYkMpPYXCVVYxifmxL1s7oaA=
4008+
zlibjs@^0.3.1:
4009+
version "0.3.1"
4010+
resolved "https://registry.yarnpkg.com/zlibjs/-/zlibjs-0.3.1.tgz#50197edb28a1c42ca659cc8b4e6a9ddd6d444554"
4011+
integrity sha1-UBl+2yihxCymWcyLTmqd3W1ERVQ=

0 commit comments

Comments
 (0)