0.2.6 • Published 11 years ago

grunt-targethtml v0.2.6

Weekly downloads
1,073
License
-
Repository
github
Last release
11 years ago

grunt-targethtml

Produces html-output depending on grunt target

Getting Started

Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-targethtml

Then add this line to your project's grunt.js gruntfile:

grunt.loadNpmTasks('grunt-targethtml');

Documentation

Configure which files to be outputted in your initConfig:

grunt.initConfig({
  // ... other configs

  // produce html
  targethtml: {
    debug: {
      input: 'public/index.html',
      output: 'public/dist/debug/index.html'
    },
    release: {
      input: 'public/index.html',
      output: 'public/dist/release/index.html'
    }
  },

  // ... other configs
});

There's no need to specify assets/js/**/* since the task will automatically recursively delete whatever is in that path.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

Release History

  • 8/31/12 - v0.1.0 - Initial release.
  • 9/1/12 - v0.1.1 - Fixed naming issues

License

Copyright (c) 2012 Ruben Stolk Licensed under the MIT license.

0.2.6

11 years ago

0.2.5

11 years ago

0.2.4

11 years ago

0.2.3

11 years ago

0.2.2

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.3

12 years ago

0.1.2

12 years ago

0.1.1

12 years ago