grunt-scriptIncluder
"inserts script references in to your files"
Example
Include the include tag in your file where you want the scripts to be included.
<!-- [@include_scripts] -->
And they will be replaces with script references to all files defined in the config.
<!-- Generated Script includes --> ... <!-- /Generated Script includes -->
Getting Started
This plugin requires Grunt ~0.4.2
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 plug-ins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-scriptincluder --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt;
The "scriptincluder" task
Overview
In your project's Gruntfile, add a section named scriptincluder
to the data object passed into grunt.initConfig()
.
grunt;
Options
options.prependedPath
Type: String
Default value: ''
A string used to perpend to the included scripts src.
optionsprependedPath + filePath
options.replacePath
Type: String
Default value: ''
Used to replace the path of the file.
optionsreplacePath + fileName
Usage Examples
Default Options
In this example, the scripts defined under page1 will be included in the tasks dest file.
grunt;
Linked refrences
You can link to other files defined in the grunt config, this is helpful if you already have defined script files in a other tasks configuration, e.g. the concat task.
grunt;
Replaced path
You can link to other files defined in the grunt config, this is helpful if you already have defined script files in a other tasks configuration, e.g. the concat task.
grunt;
output
Complete config
grunt
Release History
- 2013-12-11 v0.1.0 Initial release
- 2013-12-11 v0.1.1 Readme fix
- 2013-12-11 v0.1.2 Readme fix
- 2014-12-01 v.1.0.0 Added replacePath, and renamed basePath to prependedPath.