1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Gulpメモ

Last updated at Posted at 2017-12-25

gulpは、nodejs環境で動作するビルドツール。

ビルドツールといえば、各界隈で多数存在する。

  • Java界隈
    • Apache Ant
    • Apache Maven
    • Gradle
  • C界隈
    • Make
    • CMake
  • Microsoft界隈
    • MSBuild
  • nodejs界隈
    • Grunt
    • gulp

ビルドツールまとめ

なぜビルドツールなのか

VSCodeのtasks.jsはビルドツールを使う前提で作られている。

例えば、

  • SCSSのビルド
  • リソースの配置
  • dockerイメージの作成

などの作業を1つのタスクでは記述できず、複数のタスクとして記述する必要がある。
しかし、複数のタスクを連鎖的に実行する手段がない。
そこで、ビルドツールを使用して1つのタスクにまとめる必要がある。

入門

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?