wishthis/semantic/tasks/README.md

16 lines
395 B
Markdown
Raw Normal View History

2022-01-13 13:00:31 +00:00
## Tasks
* Watch - Compile only changed files from source
* Build - Build all files from source
* Version - Output version number
* Install - Run Installer to Set-up Paths
## How to use
2023-08-17 09:47:40 +00:00
These tasks can be imported into your own gulpfile allowing you to avoid using Fomantic's build tools
2022-01-13 13:00:31 +00:00
```javascript
2023-08-17 09:47:40 +00:00
const watch = require('path/to/fomantic/tasks/watch');
2022-01-13 13:00:31 +00:00
gulp.task('watch ui', watch);
```