Add modern.esm bundle. Fixes #2070

This commit is contained in:
Francisco Hodge
2023-08-20 22:19:40 -04:00
parent 0d5826a432
commit 1019e79e22
2 changed files with 92 additions and 2 deletions
+3 -2
View File
@@ -1,12 +1,13 @@
{
"name": "simple-keyboard",
"version": "3.6.42",
"version": "3.7.0",
"description": "On-screen Javascript Virtual Keyboard",
"main": "build/index.js",
"scripts": {
"start": "webpack serve --config webpack.config.demo.js",
"build": "webpack && npm run build-modern && tsc",
"build": "webpack && npm run build-modern && npm run build-modern-esm && tsc",
"build-modern": "webpack --config webpack.config.modern.js",
"build-modern-esm": "webpack --config webpack.config.modern_esm.js",
"test": "jest --silent",
"coverage": "npm run test -- --coverage",
"prepare": "npm run build",