Skip to content

Commit 8b0dc23

Browse files
committed
fix exports
1 parent 75547f2 commit 8b0dc23

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"name": "@acm-uiuc/js-shared",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "ACM UIUC Shared JS code",
5-
"main": "dist/index.js",
5+
"module": "dist/index.js",
6+
"types": "dist/index.d.ts",
67
"scripts": {
78
"build": "tsc"
89
},
10+
"./*": {
11+
"import": "./dist/*.mjs",
12+
"require": "./dist/*.js",
13+
"types": "./dist/*.d.ts"
14+
},
915
"files": [
1016
"dist"
1117
],

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./orgs";

0 commit comments

Comments
 (0)