mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-02 14:49:16 +02:00
Fix rollup input
This commit is contained in:
parent
6c8f02db9f
commit
dce1d943a9
2 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@ const plugins = [
|
|||
|
||||
export default [
|
||||
{
|
||||
input: pkg.module,
|
||||
input: pkg.main,
|
||||
output: {
|
||||
name: "ePub",
|
||||
file: pkg.browser,
|
||||
|
@ -24,7 +24,7 @@ export default [
|
|||
},
|
||||
|
||||
{
|
||||
input: pkg.module,
|
||||
input: pkg.main,
|
||||
output: {
|
||||
name: "ePub",
|
||||
file: "./dist/epub.esm.js",
|
||||
|
|
|
@ -3,8 +3,8 @@ import commonjs from "@rollup/plugin-commonjs";
|
|||
|
||||
import pkg from "./package.json";
|
||||
|
||||
import serve from 'rollup-plugin-serve'
|
||||
import livereload from 'rollup-plugin-livereload'
|
||||
import serve from 'rollup-plugin-serve';
|
||||
import livereload from 'rollup-plugin-livereload';
|
||||
|
||||
const plugins = [
|
||||
nodeResolve(),
|
||||
|
@ -13,7 +13,7 @@ const plugins = [
|
|||
|
||||
export default [
|
||||
{
|
||||
input: pkg.module,
|
||||
input: pkg.main,
|
||||
output: {
|
||||
name: 'ePub',
|
||||
file: pkg.browser,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue