(taggedReleaseDir, filePath)
| 292 | |
| 293 | // Copies a file into the release directory |
| 294 | function copyIntoRelease(taggedReleaseDir, filePath) { |
| 295 | var file = path.resolve(projectPath, filePath); |
| 296 | |
| 297 | shell.cp('-f', file, taggedReleaseDir); |
| 298 | } |
| 299 | |
| 300 | // Create the bower.json file |
| 301 | grunt.registerTask('update-bower-json', function () { |