Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Preparations for npm/bower publishing
  • Loading branch information
timmywil committed Oct 15, 2013
1 parent 8df348e commit 6095be1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -27,7 +27,7 @@ module.exports = function( grunt ) {
return gzip.zip( contents, {} ).length;
}
},
cache: "dist/.sizecache.json"
cache: "build/.sizecache.json"
}
},
build: {
Expand Down
6 changes: 3 additions & 3 deletions bower.json
@@ -1,6 +1,6 @@
{
"name": "jquery",
"version": "2.0.4-pre",
"version": "2.1.0-pre",
"ignore": [
"**/.*",
"build",
Expand All @@ -13,10 +13,10 @@
"bower.json"
],
"dependencies": {
"sizzle": "~1.10.11",
"requirejs": "~2.1.8"
"sizzle": "~1.10.11"
},
"devDependencies": {
"requirejs": "~2.1.8",
"qunit": "~1.12.0"
}
}

5 comments on commit 6095be1

@timmywil
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here's a look at what will get published to both bower and NPM. https://npmjs.org/package/jquery-temp

@mgol
Copy link
Member

@mgol mgol commented on 6095be1 Oct 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@timmywil LGTM 👍 It'll be great to finally have official versions. :)

@mgol
Copy link
Member

@mgol mgol commented on 6095be1 Oct 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@timmywil BTW, the build process adds too many commas which makes grunt jshint (and, consequently, grunt) to fail.

@timmywil
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mzgol oh yea? I can't seem to reproduce.

@mgol
Copy link
Member

@mgol mgol commented on 6095be1 Oct 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@timmywil nvm, I reinstalled all npm dependencies and it works now, I had to have sth outdated.

Please sign in to comment.