Add build for modern browsers (index.modern.js)

This commit is contained in:
Francisco Hodge
2021-10-12 20:18:52 -07:00
parent 78532a53b1
commit 9dd51c80c1
8 changed files with 128 additions and 134 deletions
+3 -2
View File
@@ -1,12 +1,13 @@
{
"name": "simple-keyboard",
"version": "3.2.69",
"version": "3.3.0",
"description": "On-screen Javascript Virtual Keyboard",
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"start": "webpack serve --config webpack.config.demo.js",
"build": "webpack && tsc",
"build": "webpack && tsc && npm run build-modern",
"build-modern": "webpack --config webpack.config.modern.js",
"test": "jest --silent",
"coverage": "npm run test -- --coverage",
"prepare": "npm run build",