Skip to content

Commit

Permalink
fix(package.json): remove unnecessary relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
manudeli committed Dec 12, 2022
1 parent 7e28cf8 commit 4268911
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions packages/calendar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"./package.json": "./package.json"
},
"import": "./esm/index.mjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./esm/index.mjs"
"import": "esm/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "esm/index.mjs"
},
"scripts": {
"prepack": "yarn build",
Expand Down
8 changes: 4 additions & 4 deletions packages/table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"./package.json": "./package.json"
},
"import": "./esm/index.mjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./esm/index.mjs"
"import": "esm/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "esm/index.mjs"
},
"scripts": {
"prepack": "yarn build",
Expand Down

0 comments on commit 4268911

Please sign in to comment.