Skip to content

Commit

Permalink
Update build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
bhch committed Aug 28, 2021
1 parent 9b8834f commit 96580e2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
"exports": "./dist/react-json-form.modern.js",
"main": "./dist/react-json-form.js",
"module": "./dist/react-json-form.module.js",
"unpkg": "./dist/react-json-form.min.js",
"unpkg": "./dist/react-json-form.js",
"scripts": {
"build": "microbundle --format umd,cjs",
"dev": "microbundle watch --format umd,cjs --no-compress --jsx React.createElement --output ./dev/dist/",
"build": "npm run build:uncompressed && npm run build:compressed",
"build:uncompressed": "microbundle --format umd --no-compress",
"build:compressed": "microbundle --format umd -o ./dist/react-json-form.min.js",
"dev": "microbundle watch --format umd --no-compress --jsx React.createElement --output ./dev/dist/",
"lint": "eslint src"
},
"keywords": [],
Expand Down

0 comments on commit 96580e2

Please sign in to comment.