Skip to content

Commit

Permalink
Merge pull request #9 from h1dd3nsn1p3r/development
Browse files Browse the repository at this point in the history
🐛 Fix: dist DIR path in package.json file
  • Loading branch information
h1dd3nsn1p3r authored Jan 3, 2024
2 parents 7a2ca99 + 1d548aa commit f28a812
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm ci
- run: npm test
- run: pnpm run build
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelogs

## 1.0.3 - 04 January 2024

- Fix: `dist` DIR path in `package.json` file.

## 1.0.2 - 03 January 2024

- Added: Github workflow for npm package publish.
Expand Down
10 changes: 5 additions & 5 deletions package.json
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"
Expand All @@ -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",
Expand Down

0 comments on commit f28a812

Please sign in to comment.