Skip to content

Commit

Permalink
2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hyzyla committed Sep 1, 2024
1 parent 7f0ddc9 commit 0b0868c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 19 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyzyla/pdfium",
"version": "2.1.1",
"version": "2.1.2",
"description": "Universal wrapper for PDFium",
"type": "module",
"exports": {
Expand Down Expand Up @@ -52,7 +52,9 @@
},
"author": "Yevhenii Hyzyla",
"license": "MIT",
"files": ["dist/**/*"],
"files": [
"dist/**/*"
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@octokit/rest": "^19.0.13",
Expand Down Expand Up @@ -97,12 +99,22 @@
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "import"],
"plugins": [
"@typescript-eslint",
"import"
],
"rules": {
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal", "parent", "sibling", "index"],
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index"
],
"pathGroups": [
{
"pattern": "./vendor/**",
Expand All @@ -118,7 +130,9 @@
}
]
},
"ignorePatterns": ["src/vendor/**/*"],
"ignorePatterns": [
"src/vendor/**/*"
],
"settings": {
"import/resolver": {
"typescript": true,
Expand Down

0 comments on commit 0b0868c

Please sign in to comment.