Skip to content

Commit

Permalink
Ignore .babelrc for npm
Browse files Browse the repository at this point in the history
  • Loading branch information
fchasen committed Dec 9, 2016
1 parent c65a718 commit 12b9803
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
books
test
.babelrc
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "epubjs",
"version": "0.3.2",
"version": "0.3.3",
"description": "Parse and Render Epubs",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/book.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import request from "./utils/request";
import EpubCFI from "./epubcfi";

const CONTAINER_PATH = "META-INF/container.xml";
const EPUBJS_VERSION = "0.3.2";
const EPUBJS_VERSION = "0.3.3";

/**
* Creates a new Book
Expand Down
2 changes: 1 addition & 1 deletion src/epub.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function ePub(url, options) {
return new Book(url, options);
}

ePub.VERSION = "0.3.2";
ePub.VERSION = "0.3.3";

if (typeof(global) !== "undefined") {
global.EPUBJS_VERSION = ePub.VERSION;
Expand Down

0 comments on commit 12b9803

Please sign in to comment.