Fixed types in package.json
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nathan Kellenicki 2019-03-21 09:47:16 -07:00
parent cd613cc72b
commit e588419245
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
<head>
<title>Web Bluetooth node-poweredup Example</title>
<script src="../dist/browser/poweredup.js"></script>
<script src="https://cdn.jsdelivr.net/npm/node-poweredup@latest/dist/browser/poweredup.js"></script>
<link rel="stylesheet" type="text/css" href="./web_bluetooth.css" />
<script>

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "node-poweredup",
"version": "2.0.4",
"version": "2.0.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,10 +1,10 @@
{
"name": "node-poweredup",
"version": "2.0.4",
"version": "2.0.5",
"description": "A Javascript module to interface with LEGO Powered UP components.",
"homepage": "https://github.com/nathankellenicki/node-poweredup/",
"main": "dist/node/index-node.js",
"types": "dist/index-node.d.ts",
"types": "dist/node/index-node.d.ts",
"scripts": {
"build:node": "tslint -c tslint.json \"./src/*.ts\" && tsc",
"build:browser": "tslint -c tslint.json \"./src/*.ts\" && webpack --mode=production",