1
1

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コマンド一覧

Posted at

MacOSのGulpコマンド一覧です。手順ごとに並んでいるので、Gulp以外のコマンドもあります。

#インストール
##Node.jsを公式サイトからインストール
https://nodejs.org/en/

##Node.jsがインストールされているか確認(バージョンの表示)

node -v

##Gulpをグローバルにインストール(どの場所にいてもgulpコマンドが使えるように)

sudo npm install -g gulp-cli

##Gulpがインストールされているか確認(バージョンの表示)

gulp -v

#プロジェクトごとにやること
##プロジェクトのフォルダまで移動

cd プロジェクトのフォルダのパス

##package.jsonファイルの作成

npm init

途中で、プロジェクト名や著作権の設定をどうするかというダイアログが表示されるが、設定が不要ならば全てYes(Enterキー)でよい

##必要なプラグインのインストール

sudo npm install --save-dev (プラグイン名)

*––save-devという指定をすることで、インストールしたプラグインのバージョンが、自動的にpackage.jsonファイルに追記される

##Gulp本体をローカル環境に(プロジェクトフォルダー以下で使えるように)インストール
ローカル環境にもインストールする必要がある

sudo npm install --save-dev gulp
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?