1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-02 14:49:16 +02:00

Ignore .babelrc for npm

This commit is contained in:
Fred Chasen 2016-12-09 13:19:01 +01:00
parent c65a7186ab
commit 12b9803f54
4 changed files with 4 additions and 3 deletions

View file

@ -1,2 +1,3 @@
books
test
.babelrc

View file

@ -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",

View file

@ -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

View file

@ -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;