-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from h1dd3nsn1p3r/development
🐛 Fix: dist DIR path in package.json file
- Loading branch information
Showing
3 changed files
with
10 additions
and
7 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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "@h1dd3nsn1p3r/pdf-invoice", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"author": "h1dd3nsn1p3r", | ||
"description": "Simple yet powerful node JS library that generates PDF invoice on the fly.", | ||
"license": "MIT", | ||
"main": "./build/index.js", | ||
"module": "./build/index.mjs", | ||
"types": "./build/index.d.ts", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"dev": "tsup ./src --watch", | ||
"build": "tsup ./src" | ||
|
@@ -15,7 +15,7 @@ | |
"type": "git", | ||
"url": "[email protected]:h1dd3nsn1p3r/pdf-invoice.git" | ||
}, | ||
"homepage": "https://h1dd3nsn1p3r/pdf-invoice", | ||
"homepage": "https://github.com/h1dd3nsn1p3r/pdf-invoice", | ||
"keywords": [ | ||
"pdf", | ||
"invoice", | ||
|