Skip to content

Commit

Permalink
Included custom build zepto in dist archive.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasyip committed Feb 24, 2014
1 parent f4d19d2 commit 6cfca47
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
demos/
etc/
extensions/
lib/
lib/jquery
src/
submodules/
test/
Expand Down
6 changes: 3 additions & 3 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ module.exports = (grunt) ->
dist:
files: [
expand: yes
src: ["{src,extensions,themes}/**"]
src: ["{src,extensions,themes}/**","lib/zepto/**"]
dest: '<%= dirs.dist %>'
cwd: '<%= dirs.package %>'
,
Expand Down Expand Up @@ -172,8 +172,8 @@ module.exports = (grunt) ->
options:
archive: "<%= dirs.archive %>/<%= meta.dist %>.tgz"
files: [
src: ["dist/**/*"]
dest: ""
src: ["dist/**/*","README.md","LICENSE.txt","VERSIONS.md","package.json"]
dest: "package"
cwd: ''
expand: true
]
Expand Down
4 changes: 2 additions & 2 deletions demos/main/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ <h1>Demos</h1>
</div>
<div class="scroll">
<ul class="rounded">
<li class="forward"><a target="_blank" href="../todo/">To-Do app</a></li>
<li class="forward"><a target="_blank" href="../clock/">Clock app</a></li>
<li class="forward"><a target="_blank" href="../todo/index.html">To-Do app</a></li>
<li class="forward"><a target="_blank" href="../clock/index.html">Clock app</a></li>
</ul>
</div>
<div class="info">
Expand Down
2 changes: 1 addition & 1 deletion demos/todo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
$(function(){
function submitForm(){
$el = $('#add form');
if ($('#todo', $el).val().length > 1) {
if ($('#todo', $el).val().length >= 1) {
var itemid = $('#home ul li').length + 1;
$('#home .incomplete').append($('<li><input type="checkbox" /> <span>' + $('#todo', $el).val() + '</span></li>'));
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "David Kaneda",
"name": "jqt",
"description": "Create powerful mobile apps with just HTML, CSS, and Zepto.js (or jQuery).",
"version": "0.99.3",
"version": "0.99.4",
"versionId": "rc9",
"repository": {
"type": "git",
Expand Down

0 comments on commit 6cfca47

Please sign in to comment.