Skip to content

Commit

Permalink
Update build scripts in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Jan 10, 2024
1 parent 8c652ad commit d2532b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "@master/css-runtime",
"scripts": {
"build": "pnpm run \"/^build:/\"",
"build:iife": "techor pack \"src/iife.ts\" --outfile \"dist/iife.bundle.js\" --bundle --format iife --no-external",
"build:browser-esm": "techor pack \"src/index.ts\" --outfile \"dist/browser.bundle.mjs\" --bundle --declare --format esm --no-external",
"build:esm": "techor pack \"src/index.ts\" --outfile \"dist/index.bundle.mjs\" --bundle --declare --format esm",
"build:cjs": "techor pack \"src/index.ts\" --outfile \"dist/index.bundle.js\" --bundle --declare --format cjs",
"build:iife": "techor pack \"src/iife.ts\" --outfile \"dist/iife.bundle.js\" --bundle --format iife --no-external --no-clean",
"build:browser-esm": "techor pack \"src/index.ts\" --outfile \"dist/browser.bundle.mjs\" --bundle --declare --format esm --no-external --no-clean",
"build:esm": "techor pack \"src/index.ts\" --outfile \"dist/index.bundle.mjs\" --bundle --declare --format esm --no-clean",
"build:cjs": "techor pack \"src/index.ts\" --outfile \"dist/index.bundle.js\" --bundle --declare --format cjs --no-clean",
"dev": "pnpm build --watch",
"test": "jest",
"type-check": "tsc --noEmit",
Expand Down

0 comments on commit d2532b4

Please sign in to comment.