3.3.6 • Published 10 years ago

grunt-recipe v3.3.6

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

grunt-recipeBuild Status NPM version

Bitdeli Badge

Generate scripts for recipe.js

Getting Started

This plugin requires Grunt ~0.4.0

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-recipe --save-dev

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

grunt.loadNpmTasks('grunt-recipe');

The "recipe" task

Overview

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

grunt.initConfig({
  recipe: {
    options: {
      // Task-specific options go here.
    },
    main: {
      files: {
        "example/dist": ["recipe.json"]
      }
    },
  },
})

Prepare for execute

recipe.json

{
  ${namespace}: {
    "path": ${path},
    "dest": ${dest},
    "url": ${url},
    "dependencies": ${dependencies},
    "concat": ${concat},
    "min": ${min},
    "amd": {
      "path": ${amd path},
      "dest": ${amd dest},
      "url": ${amd url}
      "exports": ${exports}
    }
  }
}

Declare below under the namespace property.

Property NameTypeRequiredDefault valueValue of meaning
namespaceString*Library namespace
pathStringLibrary path
destStringDestination directory path
urlStringLibrary URL
dependenciesArray<String>*[]Dependents namespace
concatBooleantrueConcatenate scripts
minBooleantrueMinify script
amd pathStringUse AMD script path instead of path value
amd destStringDestination directory path for AMD script
amd urlStringAMD script URL
amd exportsBoolean or StringExport specified value instead of namespace. if value is false, ignore to export namespace

See example recipe.json

Output

Grunt will output below

File nameValue of meaning
recipe.version.jsVersion of libraries
recipe.dependencies.jsLibraries dependencies
${librarieName}.with-dependencies.jsConcat and minified origin with dependencies
${librarieName}.with-dependencies.unpack.jsConcat origin with dependencies
${librarieName}.jsMinified origin source
${librarieName}.unpack.jsOrigin source
${librarieName}.amd.jsMinified AMD packed source
${librarieName}.amd.unpack.jsAMD packed source

Options

options.concat

Type: String Default value: 'concat'

Concatenate configuration properties name. Set null, if you don't want to add concatenate configuration automatically.

options.min

Type: String Default value: 'uglify'

Minification configuration properties name. Set null, if you don't want to add minification configuration automatically.

options.version

Type: String Default value: Unix time

The value is used for avoiding browser cache when update libraries.

options.concatUnpackSuffix

Type: String Default value: .with-dependencies.unpack.js

File name suffix of concatenate with dependencies.

options.concatMinSuffix

Type: String Default value: .with-dependencies.js

File name suffix of minified after concatenate with dependencies.

options.originUnpackSuffix

Type: String Default value: .unpack.js

File name suffix of origin source.

options.originMinSuffix

Type: String Default value: .js

File name suffix of minified source.

options.amdUnpackSuffix

Type: String Default value: .amd.unpack.js

File name suffix of generated AMD source.

options.amdMinSuffix

Type: String Default value: .amd.js

File name suffix of minify and generated AMD source.

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)

3.3.6

10 years ago

3.3.5

10 years ago

3.3.4

10 years ago

3.3.3

10 years ago

3.3.2

10 years ago

3.3.1

10 years ago

3.3.0

10 years ago

3.2.0

10 years ago

3.1.0

10 years ago

3.0.0

10 years ago

2.1.0

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.0.0

10 years ago

0.3.0

10 years ago

0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago