2.1.3 • Published 8 years ago

grunt-angular-toolbox v2.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

grunt-angular-toolbox

Build Status Dependency Status

Collection of grunt tasks and opinionated configuration for development of small and mid-sized angular modules.

Compared to other tooling collections like angular-seed and yeoman angular generator, this project aims to produce bower packages consumable by other angular apps.

Examples:

Changelog

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, you probably don't want to use this but build your own tooling.

npm install grunt grunt-cli --save-dev
npm install grunt-angular-toolbox --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-angular-toolbox');

Use

// Gruntfile.js
module.exports = function(grunt) {
  'use strict';

  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    angularToolbox: { /* see config */ }
    /* project specific configuration here */
  });

  /* load angular-toolbox collection 
     see Included 3rd party tasks */
  grunt.loadNpmTasks('grunt-angular-toolbox');

  /* custom tasks and hooks */
  grunt.registerTask('default', ['test']);
  grunt.registerTask('build:after', function() {
    grunt.log.ok('work complete!');
  });
};

Tasks

Depending on the tasks added by angularToolbox.tasks these grunts are available in the project.

#see this list by using
grunt --help

$ grunt test[:(unit|e2e)]

Run the tests.

Environment Variables:

  • E2E_SANDBOX_PORT change port (default: 8765)
  • KARMA_BROWSERS overwrite browsers for unit tests (default: PhantomJs,Chrome,Firefox)
  • KARMA_REPORTERS overwrite reporters for unit tests (default: progress)
  • USE_SAUCELABS weather or not to run e2e tests on saucelabs (default: true)
  • PROTRACTOR_BROWSERS overwrite browsers for unit tests (default: Chrome)

Options:

  • --browsers change browsers for current suite(s)
  • --reporters change reporters for current suite(s)
  • --no-coverage disable coverage reports and instrumentation (useful for debugging)
  • --no-jshint disable jshint (useful for debugging)
  • --no-saucelabs disable saucelabs

$ grunt demo[:e2e]

Serve demo or e2e standbox application

Environment Variables:

  • DEMO_PORT change port (default: 8000)
  • E2E_SANDBOX_PORT change port (default: 8765)
  • LIVERELOAD_PORT change livereload port (default: 35729)

Options:

  • --port change port of current task
  • --livereload-port change livereload port

$ grunt coverage

Serve coverage report, requires grunt test:unit to have been run once.

Environment Variables:

  • COVERAGE_PORT change port (default: 7000)
  • LIVERELOAD_PORT change livereload port (default: 35729)

Options:

  • --port change port
  • --livereload-port change livereload port

$ grunt build[:watch]

Concatenate, annotate and minify JavaScript and less/sass files Optionally watch the src files and rebuild on change

$ grunt release

Run tests, (if successful) bump version build project, commit changes and push to origin

Default project structure

 ┌ demo/
 │ └ index.html
 ├ dist/
 ├ src/
 │ ├ js/
 │ │ ├ *.js (project related js files)
 │ │ └ helper.module.js (initiator of angular module)
 │ ├ less/
 │ │ └ *.less (project related less files)
 │ ├ partials/
 │ │ └ *.html (views for directives)
 │ └ sass/
 │   └ *.scss (project related sass files)
 ├ test/
 │ ├ e2e/
 │ │ ├ env/
 │ │ │ └ index.html
 │ │ ├ SpecHelper.js|coffee (test setup stuff)
 │ │ └ *Spec.js|coffee (end to end test files)
 │ └ unit/
 │   └ *.js|coffee (test setup stuff)
 ├ .jshintrc (optional)
 ├ bower.json (optional)
 ├ package.json
 └ Gruntfile.js|coffee

This is customizable via the config

Config

Values are defaults or explanations.

// Gruntfile.js
module.exports = function(grunt) {
  'use strict';

  grunt.initConfig({
    'angularToolbox': {
        /* specify the preconfigured tasks that 
         should be used in the project */
      tasks: [
        'build',
        'coverage',
        'demo',
        'demo:e2e',
        'release',
        'test'
      ],
      
      // whether or not the author in package.json should be set to the
      // contributor with the most commits
      dynamicAuthor: false,
      
      // customize the demo/test environment files
      envFilter: function(env) { return env; },

      // customize project structure
      files: {
        bower: 'bower.json',
        pkg: 'package.json',
        src: {
          js: [
            'src/js/**/helper*.js',
            'src/js/**/!(helper)*.js'
          ],
          less: [
            'src/less/**/!(_)*.less'
          ],
          sass: [
            'src/sass/**/!(_)*.scss'
          ]
        },
        test: {
          unit: [
            'test/unit/**/*.+(js|coffee)'
          ],
          e2e: [
            'test/e2e/SpecHelper.+(js|coffee)',
            'test/e2e/**/*Spec.+(js|coffee)'
          ]
        },
        styleCheck: [] // run through jshint and jscs
      },

      folder: {
        dist: 'dist/',
        demo: 'demo/',
        partials: 'src/partials/',
        e2eSandbox: 'test/e2e/env/',
        src: {
          js: 'src/js/',
          sass: 'src/sass/',
          less: 'src/less/',
        }
      },

      // how much commits make a maintainer?
      maintainersThreshold: 15,

      // custom middleware for e2e and demo
      // can be function or array of functions
      customMiddleware: false,

      // the angular module name in case it differs from project name 
      moduleName: 'camelCased "name" from package.json',

      // banners an wraps for generated dist files
      // see https://github.com/Jimdo/grunt-angular-toolbox/tree/master/lib/templates
      template: {
        banner: '/* ... */',
        bannerMin: '/* ... */',
        wrapTop: '/* ... */',
        wrapBottom: '/* ... *'
      },

      // disable coverage reports
      coverage: true,

      // disable jshint
      jshint: true,

      // default port for demo
      demoPort: 8000,

      // default port for coverage
      coveragePort: 7000,

      // default port for e2e
      e2eSandboxPort: 8765,

      // default browsers for karma
      unitBrowsers: ['Chrome', 'Firefox', 'PhantomJS'],

      // default browsers for protractor
      e2eBrowsers: ['Chrome'],

      // default reporters for karma
      unitReporters: ['progress'],

      // default reporter for protractor
      e2eReporter: 'spec'

      // default browsers for autoprefixer
      autoprefixerBrowsers: [
        'last 5 version',
        '> 1%',
        'ie 8'
      ],

      // execute e2e test on soucelabs if credentials are present
      saucelabs: true,

      hooks: {
        // manipulate e2e capabilities
        e2eCapabilities: function(caps) { return caps; }
      }
    }

    /* additional configuration ... */
  });

  /* rest of gruntfile ... */
};

Saucelabs

e2e tests are being executed on saucelabs, given SAUCE_USERNAME and SAUCE_ACCESS_KEY are available as environment variables

a tunnel to saucelabs needs to be available for this

see

Custom tasks and hooks

Register custom tasks and or setup before the added tasks run.

// Gruntfile.js
module.exports = function(grunt) {
  'use strict';

  grunt.initConfig({ /* ... */ });

  /* initiation of tasks ... */

  /* add any custom tasks */
  grunt.registerTask('sayYolo', function() {
    console.log('YOLO!');
  });

  /* hook it into tooling tasks ones.
     this will be called before all other release tasks */
  grunt.registerTask('release:before', ['sayYolo']);
};

Hooks

  • test:before
  • test:unit:before
  • test:e2e:before
  • test:after
  • test:unit:after
  • test:e2e:after
  • runtest:before
  • runtest:unit:before
  • runtest:e2e:before
  • runtest:after
  • runtest:unit:after
  • runtest:e2e:after
  • demo:before
  • demo:e2e:before
  • coverage:before
  • build:before
  • build:after
  • release:before
  • release:after

Included 3rd party tasks

DEPENDENCIES

LICENSE

The MIT License

Copyright (c) 2014 Jimdo GmbH http://jimdo.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2.1.3

8 years ago

2.1.2

8 years ago

2.1.1

8 years ago

2.1.0

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.1.12

9 years ago

1.1.11

9 years ago

1.1.10

9 years ago

1.1.9

9 years ago

1.1.8

9 years ago

1.1.7

9 years ago

1.1.6

9 years ago

1.1.5

9 years ago

1.1.4

9 years ago

1.1.3

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.9

9 years ago

1.0.8

9 years ago

1.0.7

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.0.17

9 years ago

0.0.16

9 years ago

0.0.15

9 years ago

0.0.14

9 years ago

0.0.13

9 years ago

0.0.12

9 years ago

0.0.11

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

0.0.0

9 years ago