Skip to content

chrisface/angular_build

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular_build

A build process for AngularJS projects using Gulp

###Setup Add angular_build to your dependencies via github as it's not a registered npm module yet.

"dependencies": {
    ...
    "angular_build": "chrisface/angular_build",
    ...
  }

Install the new dependency

npm install

If you want to use the gulp command from the terminal you will need to install Gulp globally.

npm install gulp -g

Add angular_build to your gulpfile.js

var angular_build = require('angular_build')(gulp);

###Usage

To run a full build

gulp angular-build

To run karma

gulp karma

To run karma watch

gulp karma-watch

To run a built-in webserver which watches for changes and triggers a live-reload

gulp webserver

Configure default grunt task to run a full build

gulp.task('default', [
  'angular-build'
]);

About

A build process for AngularJS projects using Gulp

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published