mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-03 14:59:18 +02:00
Ignore .babelrc for npm
This commit is contained in:
parent
c65a7186ab
commit
12b9803f54
4 changed files with 4 additions and 3 deletions
|
@ -1,2 +1,3 @@
|
||||||
books
|
books
|
||||||
test
|
test
|
||||||
|
.babelrc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "epubjs",
|
"name": "epubjs",
|
||||||
"version": "0.3.2",
|
"version": "0.3.3",
|
||||||
"description": "Parse and Render Epubs",
|
"description": "Parse and Render Epubs",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"jsnext:main": "src/index.js",
|
"jsnext:main": "src/index.js",
|
||||||
|
|
|
@ -16,7 +16,7 @@ import request from "./utils/request";
|
||||||
import EpubCFI from "./epubcfi";
|
import EpubCFI from "./epubcfi";
|
||||||
|
|
||||||
const CONTAINER_PATH = "META-INF/container.xml";
|
const CONTAINER_PATH = "META-INF/container.xml";
|
||||||
const EPUBJS_VERSION = "0.3.2";
|
const EPUBJS_VERSION = "0.3.3";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new Book
|
* Creates a new Book
|
||||||
|
|
|
@ -14,7 +14,7 @@ function ePub(url, options) {
|
||||||
return new Book(url, options);
|
return new Book(url, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
ePub.VERSION = "0.3.2";
|
ePub.VERSION = "0.3.3";
|
||||||
|
|
||||||
if (typeof(global) !== "undefined") {
|
if (typeof(global) !== "undefined") {
|
||||||
global.EPUBJS_VERSION = ePub.VERSION;
|
global.EPUBJS_VERSION = ePub.VERSION;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue