hysryt / wiki

https://hysryt.github.io/wiki/
0 stars 0 forks source link

Pug #64

Open hysryt opened 6 years ago

hysryt commented 6 years ago

https://pugjs.org/

hysryt commented 6 years ago

インストール

$ yarn add -D pug github:pugjs/pug-cli#master

pug-cli は npm にもあるが、最新版ではないので Github から取得する。

hysryt commented 6 years ago

コンパイル

npm scripts でコンパイル

{
  "scripts": {
    "build": "pug src/pug/ --out dist/ --pretty",
    "watch": "pug src/pug/ --out dist/ --pretty --watch"
  },
  "devDependencies": {
    "pug": "^2.0.3",
    "pug-cli": "github:pugjs/pug-cli#master"
  }
}
$ yarn run build

または

$ yarn run watch