grunt-symlink
v0.4.0
Published
Create symlinks in your project, usually during a build process.
Downloads
478
Readme
grunt-symlink
Automate the creation of project symlinks. This is especially useful as part of a build process, where you often want to symlink to large media folders rather than include them in the build.
For example say you have a videos folder you'd like to exclude from your requirejs build because including it makes the build take forever. No problem, use symlinks instead. But creating these symlinks manually every time you run your build would be a pain. Let grunt-symlink handle it.
Getting Started
Install this grunt plugin next to your project's Gruntfile with: npm install grunt-symlink
Then add this line to your project's Gruntfile:
grunt.loadNpmTasks('grunt-symlink');
Documentation
In your Gruntfile add:
symlink: {
links: [
{ link: 'path/to/new/symlink', to: '../path/to/original', type: 'dir'}
]
}
Important: link
is relative to your project's root directory, but to
is relative to link
. For example:
symlinks: {
links: [
{ link: 'frontend-build/videos', to '../videos'}
]
}
So in this case grunt-symlink
will create a new symlink at myproject/frontend-build/videos
that points to myproject/videos
, because to
in this case is relative to the frontend-build
directory.
type
can either be dir
, file
(default), or junction
. See Node docs on symlinks.
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Test your code using grunt.
License
Copyright (c) 2012 Dave Geddes
Licensed under the MIT license.