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 /test/index.html | |
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 'test/index.html')
-rw-r--r-- | test/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/index.html b/test/index.html index 57c778c3e..9cdfb08d8 100644 --- a/test/index.html +++ b/test/index.html @@ -4,7 +4,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <title>jQuery Test Suite</title> - <link rel="Stylesheet" media="screen" href="../bower_modules/qunit/qunit.css" /> + <link rel="Stylesheet" media="screen" href="libs/qunit/qunit.css" /> <link rel="Stylesheet" media="screen" href="data/testsuite.css" /> <!-- Includes --> @@ -14,9 +14,9 @@ --> <script src="data/jquery-1.9.1.js"></script> - <script src="../bower_modules/qunit/qunit.js"></script> - <script src="../bower_modules/requirejs/require.js"></script> - <script src="../bower_modules/sinon/fake_timers.js"></script> + <script src="libs/qunit/qunit.js"></script> + <script src="libs/require.js"></script> + <script src="libs/sinon/fake_timers.js"></script> <!-- See testinit for the list of tests --> <script src="data/testinit.js"></script> |