LoginSignup
1
2

More than 5 years have passed since last update.

gulpの使い方

Posted at

インストール

グローバルにインストールする。

$ npm install --global gulp

ローカルにインストールする場合はこちら。

$ npm install --save-dev gulp

実行

実行する。

$ gulp

npm installしたディレクトリのgulpを使用したい場合はこちら。

$ (npm bin)/gulp

構文チェックする。

$ gulp lint

ビルドする。

$ gulp build
1
2
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
2