0.1.0 • Published 10 years ago

concat-scripts-in-html v0.1.0

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

concat-scripts-in-html

concat script tag in html to a source URL

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:

How to use

npm install concat-scripts-in-html --save-dev

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

grunt.loadNpmTasks('concat-scripts-in-html');

*This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade.

Run task

Run this task with the grunt concatscripts command.

Task targets, files and options may be specified according to the grunt Configuring tasks guide.

Options

force

Type: Boolean
Default: false

This overrides this task from blocking deletion of folders outside current working dir (CWD). Use with caution.

no-write

Type: Boolean
Default: false

Will log messages of what would happen if the task was ran but doesn't actually delete the files.

Usage Examples

There are three formats you can use to run this task.

Short

clean: ["path/to/dir/one", "path/to/dir/two"]

Medium (specific targets with global options)

clean: {
  build: ["path/to/dir/one", "path/to/dir/two"],
  release: ["path/to/another/dir/one", "path/to/another/dir/two"]
},

Long (specific targets with per target options)

clean: {
  build: {
    src: ["path/to/dir/one", "path/to/dir/two"]
  }
}

Release History

  • 2015-05-10   v0.1.0   new