Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Latest commit

 

History

History
64 lines (43 loc) · 2.24 KB

README.md

File metadata and controls

64 lines (43 loc) · 2.24 KB

gulp-boilerplate

Starter Gulp + Browserify project with some common tasks and workflows we use at whatwedo. Read the original blog posts of the gulp-starter for more context, which is the base project we forked blog post, and check out the origin Wiki for some good background knowledge.

Includes the following tools, tasks, and workflows:

If you've never used Node or npm before, you'll need to install Node. If you use homebrew, do:

brew install node

Otherwise, you can download and install from here.

Install Gulp Globally

Gulp must be installed globally in order to use the command line tools. You may need to use sudo

npm install -g gulp

Alternatively, you can run the version of gulp installed local to the project instead with

./node_modules/.bin/gulp

Install npm dependencies

npm install

This runs through all dependencies listed in package.json and downloads them to a node_modules folder in your project directory.

Run gulp and be amazed.

gulp

Whole documentation for the build system can be found in the gulp/README.md.

Contribution

We don't merge contributions for this project since it reflects our internal workflow. This is only a fork from another repository, so we guess you could take a look at the original source.