http://robertdunaway.github.io
http://mashupjs.github.io
The Mashup is a learning tool that serves as a seed project for line-of-business applications. It’s goal is a shortened learning curve for building modern business applications and the reduction of technical debt.
This tutorial and more can be found in
Gulp - Quick guide to getting up and running today
Gulp Tutorial - Part 17
GLOB Tips
Here are some of the more common Glob patterns.
“dir/*”
– includes all files
“dir/**”
– includes all files and folders
“**/*.js”
– all JavaScript files
“!**/*.min.js”
– excludes all minified JavaScript files
“!app/lib/**/*”
– excludes all files in the lib folder.
https://github.com/isaacs/node-glob
http://mywiki.wooledge.org/glob#preview
Source code for this tutorial
Start the tutorial using this code base:
https://github.com/MashupJS/gulp-tutorial
A completed tutorial can be found here:
https://github.com/MashupJS/gulp-tutorial-end-result
This tutorial and more can be found in
0 comments:
Post a Comment