Skip to content

Commit

Permalink
Remove exports in package.json (#35)
Browse files Browse the repository at this point in the history
* Fix exports in package.json

* wip

* wip

* wip
  • Loading branch information
chrisfisher committed May 17, 2023
1 parent d0c55fe commit df2647e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
10 changes: 2 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@authsignal/browser",
"version": "0.1.4",
"version": "0.1.5",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down Expand Up @@ -45,11 +45,5 @@
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
]
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export {Authsignal} from "./authsignal";
export * from "./authsignal";
export * from "./types";
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"preserveWatchOutput": true,
"rootDir": "src"
"preserveWatchOutput": true
},
"include": ["./src/**/*.ts"]
}
5 changes: 0 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -659,11 +659,6 @@ has@^1.0.3:
dependencies:
function-bind "^1.1.1"

iframe-resizer@^4.3.6:
version "4.3.6"
resolved "https://registry.npmjs.org/iframe-resizer/-/iframe-resizer-4.3.6.tgz#61d92c1adefe5d416bff4fbf80c7f1f74be70ec0"
integrity sha512-wz0WodRIF6eP0oGQa5NIP1yrITAZ59ZJvVaVJqJRjaeCtfm461vy2C3us6CKx0e7pooqpIGLpVMSTzrfAjX9Sg==

ignore@^5.2.0:
version "5.2.0"
resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
Expand Down

0 comments on commit df2647e

Please sign in to comment.