Skip to content

Commit

Permalink
feat(micromark-extension-kbd-nested)!: revert to only ESM build
Browse files Browse the repository at this point in the history
  • Loading branch information
shivjm committed Apr 23, 2024
1 parent e072836 commit 18ff39d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
11 changes: 7 additions & 4 deletions packages/micromark-extension-kbd-nested/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"url": "https://github.com/shivjm/remark-extensions.git"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.build.cjs.json",
"build": "tsc -p tsconfig.build.json",
"build:clean": "rimraf lib && npm run build",
"lint": "eslint src/**/*.ts",
"test": "mocha tests/**/*.ts",
Expand Down Expand Up @@ -54,9 +54,12 @@
},
"type": "module",
"publishConfig": {
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"typings": "index.d.ts"
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
}
},
"files": [
"lib/"
Expand Down

This file was deleted.

0 comments on commit 18ff39d

Please sign in to comment.