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.

npmでSassをコンパイルしてCSS出力

Last updated at Posted at 2019-10-19

前提

nodeJSがWindowsにインストールしてあること
環境変数に設定してあること

導入

npm init -y

以下、実行結果

package.json
{
  "name": "sample2023",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC"
}

image.png

npmパッケージを追加

package.json に追加されます

npm install sass --save-dev

image.png

ファイルの変更を監視する

npx sass --watch src/sass/:dist/css/

ファイルを変更したとき、毎回コンパイルのコマンドを実行するのは大変です。
そんなときは、ファイルの変更を監視して、自動的にコンパイルされるようにしておくと便利です

image.png

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?