-
-
Notifications
You must be signed in to change notification settings - Fork 728
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library chokes when trying to include it in rollup #1645
Comments
I was able to get rollup working by updating all the packages, but the build process complains about Circular dependency a LOT! Here is the error log: Circular dependency: node_modules/pdf-lib/es/api/PDFDocument.js -> node_modules/pdf-lib/es/api/PDFEmbeddedPage.js -> node_modules/pdf-lib/es/api/PDFDocument.js |
just curious if this is by design? i don't know enough to ignore it... |
What were you trying to do?
I followed the installation via NPM and tried to import some functions with:
import { PDFDocument, StandardFonts, rgb } from 'pdf-lib';
How did you attempt to do it?
imported with
import { PDFDocument, StandardFonts, rgb } from 'pdf-lib';
saved the .js file and ran gulp/rollup....
What actually happened?
rollup chokes and gives me Circular dependency errors and MISSING EXPORT errors for the pako package.
What did you expect to happen?
expected the rollup script to produce.
How can we reproduce the issue?
all i did was import the libary with this statement:
import { PDFDocument, StandardFonts, rgb } from 'pdf-lib';
and save the .js file. When the rolllup script runs it thows the errors mentioned
Version
latest
What environment are you running pdf-lib in?
Browser
Checklist
Additional Notes
No response
The text was updated successfully, but these errors were encountered: