Skip to content

Commit

Permalink
Merge pull request #113 from vitalygashkov/next
Browse files Browse the repository at this point in the history
Fixed module exports
  • Loading branch information
vitalygashkov authored Nov 27, 2024
2 parents 98b0369 + eacbb82 commit 7faaef1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dasha",
"version": "3.1.1",
"version": "3.1.2",
"description": "Streaming manifest parser",
"files": [
"dist",
Expand All @@ -11,10 +11,11 @@
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check .",
"fix": "eslint . --fix && prettier --write .",
"build": "tsup dasha.js --format esm,cjs --minify",
"build": "tsup dasha.js --format esm,cjs",
"prepublishOnly": "npm run build"
},
"main": "dasha.js",
"main": "./dist/dasha.js",
"module": "./dist/dasha.mjs",
"types": "./types/dasha.d.ts",
"repository": {
"type": "git",
Expand Down

0 comments on commit 7faaef1

Please sign in to comment.