Skip to content

Commit

Permalink
migrate away from the fork of foliojs packages
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyLenglet committed Oct 25, 2022
1 parent 9f5cb8f commit 8efdd74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"test": "tests"
},
"dependencies": {
"@foliojs-fork/linebreak": "^1.1.1",
"@foliojs-fork/pdfkit": "^0.13.0",
"iconv-lite": "^0.6.3",
"linebreak": "^1.1.0",
"pdfkit": "^0.13.0",
"xmldoc": "^1.1.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/PDFDocument.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import PDFKit from '@foliojs-fork/pdfkit';
import PDFKit from "pdfkit";

const typeName = (bold, italics) => {
let type = 'normal';
Expand Down
2 changes: 1 addition & 1 deletion src/TextBreaker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LineBreaker from '@foliojs-fork/linebreak';
import LineBreaker from 'linebreak';
import { isObject } from './helpers/variableType';
import StyleContextStack from './StyleContextStack';

Expand Down

0 comments on commit 8efdd74

Please sign in to comment.