forked from diegomura/react-pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Webpack apparently prefers relative paths in the browser field
This is an attempt to fix the size-limit CI
- Loading branch information
1 parent
4fabb73
commit dff88b0
Showing
6 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,11 @@ | |
"description": "Parses the images in png or jpeg format for react-pdf document", | ||
"author": "Diego Muracciole <[email protected]>", | ||
"homepage": "https://github.com/diegomura/react-pdf#readme", | ||
"main": "lib/index.cjs.js", | ||
"module": "lib/index.es.js", | ||
"main": "./lib/index.cjs.js", | ||
"module": "./lib/index.es.js", | ||
"browser": { | ||
"lib/index.cjs.js": "lib/index.browser.cjs.js", | ||
"lib/index.es.js": "lib/index.browser.es.js" | ||
"./lib/index.cjs.js": "./lib/index.browser.cjs.js", | ||
"./lib/index.es.js": "./lib/index.browser.es.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
"types": "index.d.ts", | ||
"author": "Diego Muracciole <[email protected]>", | ||
"homepage": "https://github.com/diegomura/react-pdf#readme", | ||
"main": "lib/react-pdf.cjs.js", | ||
"module": "lib/react-pdf.es.js", | ||
"main": "./lib/react-pdf.cjs.js", | ||
"module": "./lib/react-pdf.es.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/diegomura/react-pdf.git", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
"license": "MIT", | ||
"author": "Diego Muracciole <[email protected]>", | ||
"homepage": "https://github.com/diegomura/react-pdf#readme", | ||
"main": "src/dist/entry-browser.js", | ||
"module": "src/dist/entry-browser.es.js", | ||
"main": "./src/dist/entry-browser.js", | ||
"module": "./src/dist/entry-browser.es.js", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
|