Skip to content

Commit

Permalink
📦 Remove duplicate types in dist output
Browse files Browse the repository at this point in the history
  • Loading branch information
Pustur committed Feb 17, 2023
1 parent 5aa1094 commit d14e501
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,16 @@
"version": "3.2.3",
"description": "A package to parse WhatsApp chats with Node.js or in the browser 💬",
"main": "dist/whatsapp-chat-parser.js",
"types": "types/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"types/",
"dist/"
],
"scripts": {
"build": "npm run clean && npm run build:types && rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run clean && rollup -c",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "npm t -- --coverage",
"clean": "rimraf dist/ types/",
"clean": "rimraf dist/",
"lint": "eslint .",
"format": "prettier --write .",
"format:staged": "pretty-quick --staged",
Expand Down

0 comments on commit d14e501

Please sign in to comment.