0.1.2 • Published 10 years ago

grunt-resource-bundle-generate v0.1.2

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

grunt-resource-bundle-generate

Generate resource bundle files in the JAVA properties file format from DUST file

Getting Started

This plugin requires Grunt ~0.4.4

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-resource-bundle-generate --save-dev

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

grunt.loadNpmTasks('grunt-resource-bundle-generate');

You can run this task as below:

grunt resource-bundle-generate

The "resource-bundle-generate" task

Overview

In your project's Gruntfile, add a section named resource-bundle-generate to the data object passed into grunt.initConfig().

grunt.initConfig({
  resource-bundle-generate: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

options.target

Type: String Default value: 'resourceBundle '

A string value that is used to indicate the target root folder used for storing the generated resource bundle.

options.format

Type: String Default value: '.properties '

A string value to indicate which format will be used as the resource bundle file, the value is ethier .properties or .json .

Usage Examples

grunt.initConfig({
  'resource-bundle-generate': {
		app: {
			options: {
				target: 'resourceBundle',
				format: '.properties'
			},
			src: ['app/templates/**/*.dust', 'app-common/templates/**/*.dust']
		}
	},
});

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

(Nothing yet)

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago