Skip to content

Commit

Permalink
fix: file paths in package.json pointing to src instead of dist (
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Aug 31, 2021
1 parent 8880a30 commit b6f2cbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "svelte-jester",
"version": "2.1.0",
"description": "A Jest transformer for Svelte - compile your components before importing them into tests",
"main": "src/transformer.cjs",
"module": "src/transformer.mjs",
"main": "dist/transformer.cjs",
"module": "dist/transformer.mjs",
"exports": {
"import": "./src/transformer.mjs",
"require": "./src/transformer.cjs",
"import": "./dist/transformer.mjs",
"require": "./dist/transformer.cjs",
"./package.json": "./package.json"
},
"type": "module",
Expand Down

0 comments on commit b6f2cbb

Please sign in to comment.