Skip to content

Commit

Permalink
more build changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jplomas committed May 12, 2024
1 parent ab64183 commit 9504441
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"test": "npm run compile && c8 node_modules/mocha/bin/_mocha test/**/*",
"report-coverage": "c8 --reporter=text-lcov npm run test > coverage.lcov",
"lint": "eslint .",
"build:cjs": "npm run compile && rollup ./out-tsc/src/calc.js --file ./dist/calc.cjs --format cjs",
"build:esm": "npm run compile && rollup ./out-tsc/src/calc.js --file ./dist/calc.js --format esm",
"build": "npm run build:cjs && npm run build:esm"
"build:cjs": "rollup ./out-tsc/src/calc.js --file ./dist/calc.cjs --format cjs",
"build:esm": "rollup ./out-tsc/src/calc.js --file ./dist/calc.js --format esm",
"build": "npm run compile && npm run build:cjs && npm run build:esm"
},
"author": "JP Lomas <[email protected]> (https://lomas.doctor/)",
"license": "MIT",
Expand Down

0 comments on commit 9504441

Please sign in to comment.