Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zk33/actless
simple & fast static website generator/cms based on wig
https://github.com/zk33/actless
Last synced: 29 days ago
JSON representation
simple & fast static website generator/cms based on wig
- Host: GitHub
- URL: https://github.com/zk33/actless
- Owner: zk33
- Created: 2015-07-25T11:50:28.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2023-06-02T07:38:11.000Z (over 1 year ago)
- Last Synced: 2024-11-14T17:13:25.466Z (about 1 month ago)
- Language: JavaScript
- Size: 2.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# actless
simple & fast static website generator/cms based on wig## initialize
```
npm install actless
$(npm bin)/actless init
```## watch&build
```
gulp
```## compile options
see `gulpfile.js` after `$(npm bin)/actless init`.
## defined gulp tasks
### `actless:sass`
compile SASS
### `actless:js`
compile JavaScript
### `actless:wig`
compile HTML with [wig](https://github.com/zk33/wig/)
### `actless:server`
run local test server
### `actless:compile`
compile SASS,JS,HTML(with wig) and prettify HTML
### `actless:compile-full`
`actless:compile` + icon font
### `actless:watch`
watch SASS,JS,HTML(with wig) and prettify source and compile all.
### `actless:watch-full`
`actless:watch` + watch icon font source
### `actless:default`
`actless:compile` + `actless:watch`
### `actless:full`
`actless:compile-full` + `actless:watch-full`