Rebase
The problem
You want to build a project, and have the directory structure change a bit. For whatever reason. You could just simply copy everything, but you would have to rename absolute references to file paths. Like script includes, stylsheets, image sources.
This grunt task handles all that, plus you can set it to copy only referenced files.
The intended usage is Grunt's file array format. With this, you can copy multiple types of files into different dirs, and the task will be able to look for reference in all of them.
Scopes
Rebase is based on scopes. Each one parallels with a form of resource include.
script
Matches script tags, and their sources.
link
Matches stylesheet links and their href attribute's value.
a
Matches html link tags and their href attribute's value.
img
Matches image elements and their source value.
url
Matches url()
resource links in css.
Url matching
In the grunt task, define a scope
object on the file object.
The keys will be converted to a RegExp pattern, and matched against the source files
the task runs on. The values of the scope
's properties will be replace value of "".replace(pattern, replacement)
.
Options
filter
Type: Boolean
Default: false
Filter unreferenced files.
base
Type: String
Default: ""
Prepend this path part to the matched resources. Useful if resource root is not the project root.
E.g.:
Matched: "/images/image.jpg" for an image src
Path in project: src/images/image.jpg
Base: "src/"
Rebase to: dist/static/img/
File will be written to dist/static/img/image.jpg
Install
npm install rebase --save-dev
Grunt task
grunt.loadNpmTasks('grunt-rebase');
Usage
grunt
LICENCE
Copyright (c) 2014 Nagy Zoltan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.