Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geckotang/grunt-boilerplate-for-statichtml
https://github.com/geckotang/grunt-boilerplate-for-statichtml
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/geckotang/grunt-boilerplate-for-statichtml
- Owner: geckotang
- Created: 2013-08-26T15:34:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-03T03:31:24.000Z (about 11 years ago)
- Last Synced: 2024-04-14T19:11:41.485Z (7 months ago)
- Language: JavaScript
- Size: 328 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gruntfile boilerplate for static html
## Setup
``` sh
bundle install --without=production --path vendor/bundle
sudo npm install
```## CSSとJSの変更を監視してscssやconcatなどをする
``` sh
grunt
```## CSSのみ生成する場合
### 非圧縮版
``` sh
grunt build_css
```### 圧縮版
``` sh
grunt build_mincss
```## スタイルガイドのみ生成する場合
grunt-styleguideでスタイルガイドを作成した際に、
うまいこと更新されない場合があるので一旦ガイドのディレクトリをcleanしている。
``` sh
grunt build_guide
```## 最終的な状態を作る(?)
圧縮されたSCSS/JS,スタイルガイドを作成する。
``` sh
grunt build
```## メモ
pythonを使って簡単なサーバーを立ち上げる。
``` sh
cd htdocs
sleep 1 && open "http://localhost:8000/" & python -m SimpleHTTPServer
```