Skip to content

Instantly share code, notes, and snippets.

@k-ish
Created October 13, 2018 08:59
Show Gist options
  • Save k-ish/6c3a5d696edb1dd90e15c159288bb28d to your computer and use it in GitHub Desktop.
Save k-ish/6c3a5d696edb1dd90e15c159288bb28d to your computer and use it in GitHub Desktop.
gulp の設定方法

Gulpインストール

サマリー

初期設定

  • node.js のインストール
  • npm のインストール
  • Gulp グローバルへインストール npm install -g gulp

プロジェクトフォルダ設定

  • Gulp ローカルへインストール(nodemoduleフォルダ) npm install --save-dev gulp
  • package.jsonファイルを生成 npm init -y

タスク作成

  • gulp プラグインをローカルにインストール npm install --sve-dev |pluginame|
  • gulpfile.js の作成

初期設定

node.js のインストール

npm のインストール

Gulp グローバルへインストール

npm install -g gulp

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment