Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork10
fix(textlint): add textlint-rule-ja-no-redundant-expression@3.0.0#128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -23,7 +23,7 @@ | ||
4. CSSファイルをそれぞれ`minify`で圧縮する | ||
5. 圧縮したCSSファイルをそれぞれ`css`ディレクトリに出力する | ||
この一連の処理は次のようなタスクとして定義できます。 | ||
```js | ||
import gulp from "gulp"; | ||
@@ -54,7 +54,7 @@ gulp.task("sass", function() { | ||
それぞれの処理がどのように実装されているかはよく分かりませんでした。 | ||
ここでは`gulp-prefixer`というgulpプラグインを書いていきます。 | ||
`gulp-prefixer`は与えられたそれぞれのファイルに対して先頭に特定の文字列の追加するプラグインです。 | ||
OwnerAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. 文字列の追加を行う -> 文字列を追加する 追加で修正したfd0a6b8 | ||
同様の名前のプラグインが公式のドキュメントで「プラグインの書き方」の例として紹介されているので合わせて見るとよいでしょう。 | ||
Uh oh!
There was an error while loading.Please reload this page.