0.0.44 • Published 9 years ago

requirejs-i18-duplications-checker v0.0.44

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

requirejs-i18-duplications-checker

grunt plugin for checking on duplicated values in i18 resources files when you use require.js

Getting Started

This plugin requires Grunt ~0.4.5

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 requirejs-i18-duplications-checker --save-dev

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

grunt.loadNpmTasks('requirejs-i18-duplications-checker');

The "requirejs_i18_duplications_checker" task

Overview

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

grunt.initConfig({
  requirejs_i18_duplications_checker: {
    groups: [
      {
        paths: ["**/*first-checked.js"], // array || string
        checkValues: "all" // || true || false
      }
    ]
  }
});

Options

options.groups

Type: Array Default value: []

Groups of files that are needed to check on values duplication.

options.groupsn.paths

Type: String || Array Default value: ''

A string or array thar specify path(s) to file(s) that should be checked on duplicate values.

options.groupsn.checkValues

Type: String || Boolean Default value: true

Taken values: true - check duplicated values only inside each specified files but not between each other, "all" - check duplicated values inside each specified files and between each other

Usage Examples

Default Options

In this example, the default options are used to check duplicated values inside files that contain in name - "test". But does't check duplicates between each other files.

grunt.initConfig({
  requirejs_i18_duplications_checker: {
    groups: [
      paths: "/**/*test.js"
    ]
  }
});

Custom Options

In this example, option checkValues="all" are used to check duplicated values inside each specified files and between each other.

grunt.initConfig({
  requirejs_i18_duplications_checker: {
    groups: [
        {
          paths: ["src/checked-file.js"],
          checkValues: "all"
        }
      ]
  },
});

Release History

(Nothing yet)

0.0.44

9 years ago

0.0.43

9 years ago

0.0.42

9 years ago

0.0.41

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.11

9 years ago

0.0.1

9 years ago