Skip to content

Commit

Permalink
chore: removed cjs build
Browse files Browse the repository at this point in the history
  • Loading branch information
mtorromeo committed Dec 14, 2023
1 parent 93dd652 commit f9e8679
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"name": "@vue-patternfly/core",
"version": "0.1.0-beta.18",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.js",
"import": "./dist/main.js",
"require": "./dist/main.cjs",
"types": "./dist/main.d.ts"
},
"./*": {
"import": "./dist/*.mjs",
"require": "./dist/*.js",
"import": "./dist/*.js",
"require": "./dist/*.cjs",
"types": "./dist/*.d.ts"
}
},
Expand All @@ -23,7 +24,6 @@
"build:vite": "vite build",
"build:bundle": "vite build -c vite-bundle.config.ts",
"build:declarations": "vue-tsc --declaration --emitDeclarationOnly && node scripts/build-global.mjs",
"build:cjs": "tsc --build --verbose tsconfig.cjs.json",
"build:esm": "tsc --build --verbose tsconfig.json",
"lint": "vue-tsc --noEmit",
"watch": "concurrently 'npm:watch:*'",
Expand Down
12 changes: 0 additions & 12 deletions packages/core/tsconfig.cjs.json

This file was deleted.

0 comments on commit f9e8679

Please sign in to comment.