0
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 1 year has passed since last update.

gulpをローカルにインストールして、Dart Sassのコンパイル環境を整える

Last updated at Posted at 2022-08-01

題の通りです。
私の備忘録として、ロカールにGulpインストールしてDartSassコンパイル環境を整えます。

環境はWindows11Home。Node.jsは8.5.5
C:\Users\hogehoge\Desktop\task\sassにwwwプロジェクトを作成。

pacakge.jsonの作成

npm init -y

次にgulpをインストール。

npm install --save-dev gulp

gulpを実行するために必要なパッケージを入れる。

以下、gulpでDart Sassのコンパイル環境構築参照、Node形式にして以下のようにする。

npm install gulp-notify gulp-plumber gulp-debug -D

Dart Sassをコンパイルするために必要なものを入れる。

npm install gulp-dart-sass gulp-autoprefixer gulp-sourcemaps -D

gulpfile.jsとかは参照元のgulpでDart Sassのコンパイル環境構築がかなり詳しく書いてくれているので割愛。

以上。

0
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
0
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?