Skip to content

Commit ff81f44

Browse files
committed
feat(prh): update dependencies
1 parent f587881 commit ff81f44

File tree

5 files changed

+1459
-661
lines changed

5 files changed

+1459
-661
lines changed

lib/paragraph.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class Paragraph {
1818
constructor(index: number, content: string) {
1919
this.index = index;
2020
this.content = content;
21+
this.ignoreAll = false;
2122

2223
// prh:disable:良い|悪い みたいなパターンからチェックをパスさせる表現を作る
2324
// prh:disable だけの場合は全部パスさせる

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"scripts": {
1313
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
14-
"build": "tslint --fix --type-check -c tslint.json -p tsconfig.json && tsfmt -r && tsc",
14+
"build": "tslint --fix -c tslint.json -p tsconfig.json && tsfmt -r && tsc",
1515
"test": "npm run build && mocha --reporter spec --require intelli-espower-loader",
1616
"update-submodules": "git submodule foreach 'git pull --rebase'"
1717
},
@@ -27,25 +27,24 @@
2727
"homepage": "https://github.com/prh/prh",
2828
"dependencies": {
2929
"commandpost": "^1.2.1",
30-
"diff": "^3.3.0",
30+
"diff": "^4.0.1",
3131
"js-yaml": "^3.9.1"
3232
},
3333
"devDependencies": {
34-
"@types/diff": "^3.2.0",
35-
"@types/glob": "^5.0.30",
36-
"@types/js-yaml": "^3.9.0",
37-
"@types/mkdirp": "^0.5.0",
38-
"@types/mocha": "^2.2.32",
39-
"@types/node": "^8.0.19",
40-
"conventional-changelog-cli": "^1.3.2",
34+
"@types/diff": "^4.0.2",
35+
"@types/glob": "^7.1.1",
36+
"@types/js-yaml": "^3.12.1",
37+
"@types/mkdirp": "^0.5.2",
38+
"@types/mocha": "^5.2.7",
39+
"@types/node": "^12.7.2",
40+
"conventional-changelog-cli": "^2.0.23",
4141
"glob": "^7.1.2",
4242
"intelli-espower-loader": "^1.0.1",
4343
"mkdirp": "^0.5.1",
44-
"mocha": "^3.5.0",
44+
"mocha": "^6.2.0",
4545
"power-assert": "^1.4.4",
46-
"source-map-support": "^0.4.5",
4746
"tslint": "^5.5.0",
48-
"typescript": "^2.4.2",
49-
"typescript-formatter": "^6.0.0"
47+
"typescript": "^3.5.3",
48+
"typescript-formatter": "^7.2.2"
5049
}
5150
}

tslint.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@
7272
"no-trailing-whitespace": false,
7373
"no-unused-expression": false,
7474
"no-unused-variable": false,
75-
"no-use-before-declare": true,
7675
"no-var-keyword": true,
7776
"no-var-requires": false,
7877
"object-literal-sort-keys": false,

0 commit comments

Comments
 (0)