diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-12-06 15:55:55 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-12-06 16:04:35 -0500 |
commit | f9ad13c9ec8967916427642db2883a1bf3bccd86 (patch) | |
tree | ad55994991cada6f447596609d763898eefd68a1 /build/tasks | |
parent | ed20e7c645064822f4070a0c60195e4bcdaba683 (diff) | |
download | jquery-f9ad13c9ec8967916427642db2883a1bf3bccd86.tar.gz jquery-f9ad13c9ec8967916427642db2883a1bf3bccd86.zip |
Manage bower dependencies with grunt-bowercopy
Tracked bower dependencies are located at "src/sizzle" and "test/libs".
The source-destination mapping is in the Gruntfile.
When updating a bower dependency, update the version in bower.json, run
`grunt bower`, and then commit the result. When adding a dependency,
update the bowercopy task accordingly.
Fixes #14615.
Closes gh-1452.
Diffstat (limited to 'build/tasks')
-rw-r--r-- | build/tasks/build.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tasks/build.js b/build/tasks/build.js index 55ccbe860..07d2942f1 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -26,7 +26,7 @@ module.exports = function( grunt ) { endFile: "src/outro.js" }, paths: { - sizzle: "../bower_modules/sizzle/dist/sizzle" + sizzle: "sizzle/dist/sizzle" }, rawText: {}, onBuildWrite: convert |