Grunt plugin to updates paths for concat, uglify and cssmin where is nette variable $basePath
This plugin requires Grunt ^1.0.0
and use-min ^2.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-nette-basepath --save-dev
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-nette-basepath');
In your project's Gruntfile, add a section named netteBasePath
to the data object passed into grunt.initConfig()
.
full example on github.com/chemix/Nette-Grunt
grunt.initConfig({
...
netteBasePath: {
task: {
basePath: 'www',
options: {
removeFromPath: ['app/templates/']
}
}
},
...
})
...
netteBasePath:
task:
basePath: 'www'
options:
removeFromPath: ['app/template/']
...
Multiple replacements
...
netteBasePath:
taskCore:
basePath: 'www'
options:
removeFromPath: ['app/template/']
taskLibs:
basePath: 'www/components'
options:
searchPattern: '{$incPath}'
...
- 0.4.0: use "/" as folder separator for all OS in configuration
- 0.3.0: Support for another replace path search string, multiple replaces
- 0.2.0: Update for grunt-usemin 2.1.0
- 0.1.0: Initial release