Skip to content

Commit

Permalink
fix: tuple export path
Browse files Browse the repository at this point in the history
fix: tuple export path
  • Loading branch information
Coly010 authored Jan 27, 2020
2 parents 5980392 + fce9468 commit d4e9b4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "no-try",
"version": "1.1.1",
"description": "Clean up code by removing try-catch-finally blocks.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"main": "index.js",
"module": "index.esm.js",
"types": "index.d.ts",
"scripts": {
"preversion": "npm run format && npm run build",
"prepublishOnly": "npm run format && npm run test && npm run build",
Expand Down
6 changes: 3 additions & 3 deletions tuple/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"main": "../dist/tuple/index.js",
"module": "../dist/tuple/index.esm.js",
"types": "../dist/tuple/index.d.ts"
"main": "../tuple/index.js",
"module": "../tuple/index.esm.js",
"types": "../tuple/index.d.ts"
}

0 comments on commit d4e9b4c

Please sign in to comment.