Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.

Commit 01536bf

Browse files
committed
0.2.2
Closes #55
1 parent 722ddf2 commit 01536bf

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# 0.2.2 - 2016-03-12
2+
13
- Fixed: added back standalone version in `./pjax.js`
24
([#57](https://github.com/MoOx/pjax/issues/57)
35
- Fixed: error when using pjax with google analytics (``options`` was undefined)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pjax",
3-
"version": "0.1.4",
3+
"version": "0.2.2",
44
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
55
"keywords": [
66
"pjax",

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pjax",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
55
"keywords": [
66
"pjax",
@@ -31,10 +31,11 @@
3131
},
3232
"scripts": {
3333
"lint": "jscs **/*.js && jshint . --exclude-path .gitignore",
34-
"test": "npm run lint && npm run standalone && testling",
34+
"standalone": "browserify index.js --standalone Pjax > pjax.js",
35+
"tests": "testling",
36+
"test": "npm run lint && npm run standalone && npm run tests",
3537
"test--html": "testling --html > tests/scripts/index.html",
3638
"coverage": "browserify -t coverify tests/**/*.js | testling | coverify",
37-
"standalone": "browserify index.js --standalone Pjax > pjax.js",
3839
"example": "echo '\n==> Open http://localhost:3000/example in your browser.'; serve .",
3940
"prepublish": "npm run standalone"
4041
},

0 commit comments

Comments
 (0)