15
16

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をWebstormで使ってみる

Posted at

Webstorm9でGulp対応

今回リリースされたWebstorm9でGulp対応したそうなので早速使ってみることに。Webstorm

Gulp関連の機能

###コンテキストメニュー
とりあえずgulpfile.jsを作成しファイルを右クリック。
lessをコンパイルする簡単なものを用意しました。

glupfile.js
var gulp = require('gulp');
var less = require('gulp-less');
var path = require('path');

gulp.task('less', function () {
  gulp.src('./less/**/*.less')
    .pipe(less({
      paths: [ path.join(__dirname, 'less', 'includes') ]
    }))
    .pipe(gulp.dest('./css'));
});

すると、glupアイコンとともに、[Create 'default']と [Show Gulp Tasks]が現れています。
contextmenu.jpg

###オートコンプリート
これは多分これまでもできていたと思いますが、オートコンプリートももちろん出てくる。
autocomplete.jpg

###Gulpの実行設定
こんなダイアログが出てきます。
Createdefault.jpg

Gulp実行ボタン

設定すると右上にタスク実行できるボタンが。
runtasks.jpg

Gulp実行コンソール

こんな感じで実行結果が見れます。
rungulp.jpg

Gulp タスクリスト

Gruntみたいにタスクリストも表示されます。
tasklist.jpg

この際に簡単なアプリでも作ってGulpの勉強をしてみようと思います。

15
16
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
15
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?