Skip to content

Commit

Permalink
Grunts
Browse files Browse the repository at this point in the history
  • Loading branch information
dlanileonardo committed Aug 29, 2014
1 parent 11af564 commit 8a22cf2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.sizecache.json
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = function (grunt) {
},
build: {
files: {
'build/jquery.live.search-<%= pkg.version %>.min.js': 'jquery.live.search.js'
'jquery.live.search.min.js': 'jquery.live.search.js'
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.live.search",
"version": "0.0.1",
"version": "0.0.8",
"description": "A simple, lightweight jQuery plugin for implement live-search.",
"main": "Gruntfile.js",
"directories": {
Expand Down
9 changes: 5 additions & 4 deletions test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
<meta charset="utf-8">
<title>jquery.live.search Test Suite</title>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.10.0.css">
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script src="http://code.jquery.com/qunit/qunit-1.10.0.js"></script>
<script src="../jquery.live.search.js"></script>
<script src="tests.js"></script>
</head>
<body>
<div id="qunit"></div>
Expand All @@ -20,9 +24,6 @@
<li>Taz</li>
</ul>
</div>
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script src="//code.jquery.com/qunit/qunit-1.15.0.js"></script>
<script src="../jquery.live.search.js"></script>
<script src="tests.js"></script>

</body>
</html>

0 comments on commit 8a22cf2

Please sign in to comment.