Skip to content

Commit

Permalink
addressing publish warnings (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanelliott-wk authored Jan 9, 2025
1 parent 3b9d3fc commit 450bd64
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 94 deletions.
92 changes: 0 additions & 92 deletions .dart_tool/package_config.json

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.12.7

- Addressing pub publish warnings

## 2.12.6

- Init CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion lib/src/pdf_document_proxy.dart
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class PDFDocumentProxy {
outlineNodes = [];
for (final val in value) {
if (val is JsObject) {
outlineNodes.add(val as JsObject);
outlineNodes.add(val);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Dart bindings for Mozilla's PDF.js library
homepage: https://github.com/Workiva/pdfjs_dart

environment:
sdk: '>=2.19.0 <3.0.0'
sdk: '>=2.19.0 <4.0.0'

dependencies:
quiver: ^3.0.0
Expand Down

0 comments on commit 450bd64

Please sign in to comment.