-
Notifications
You must be signed in to change notification settings - Fork 0
Conversation
tslint.json
Outdated
@@ -16,12 +16,17 @@ | |||
"interface-name": false, | |||
"jsdoc-format": true, | |||
"label-position": true, | |||
"label-undefined": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TSLint 4.0で廃止? palantir/tslint#1507
コンパイラによりカバーされます
palantir/tslint#877
tslint.json
Outdated
"no-debugger": true, | ||
"no-duplicate-key": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TSLint 4.0で廃止
コンパイラによりカバーされます
palantir/tslint#885
tslint.json
Outdated
@@ -48,7 +52,6 @@ | |||
"no-trailing-whitespace": true, | |||
"no-unused-expression": true, | |||
"no-unused-variable": true, | |||
"no-unreachable": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TSLint 4.0で廃止
コンパイラによりカバーされます
palantir/tslint#661
package.json
Outdated
"prepublish": "gulp clean && gulp compile", | ||
"clean": "gulp clean", | ||
"prepublish": "npm run clean && npm run build", | ||
"clean": "rimraf lib && rimraf spec/build", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ディレクトリ削除であることをわかりやすくするために rimraf ./lib && rimraf ./spec/build
としてしまっても良さそうに思いました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
荘ですね、直します
a669f88
to
13d2dca
Compare
publish される成果物に変更はないので、 version はbump されません。 |
このpull requestが解決する内容
開発環境におけるgulp利用をやめます。
概要
破壊的な変更を含んでいるか?