node-raspberrypi-usbboot
Advanced tools
Comparing version 0.2.9 to 0.2.10-add-versionbot-changelog-58bd9ff059a46e8c5e1e53e9859fbabc9444de0c
@@ -162,3 +162,3 @@ "use strict"; | ||
}; | ||
exports.isUsbBootCapableUSBDevice = (idVendor, idProduct) => { | ||
const isUsbBootCapableUSBDevice = (idVendor, idProduct) => { | ||
return (idVendor === USB_VENDOR_ID_BROADCOM_CORPORATION && | ||
@@ -168,2 +168,3 @@ (idProduct === USB_PRODUCT_ID_BCM2708_BOOT || | ||
}; | ||
exports.isUsbBootCapableUSBDevice = isUsbBootCapableUSBDevice; | ||
const isUsbBootCapableUSBDevice$ = (device) => { | ||
@@ -170,0 +171,0 @@ return exports.isUsbBootCapableUSBDevice(device.deviceDescriptor.idVendor, device.deviceDescriptor.idProduct); |
@@ -7,2 +7,8 @@ # Change Log | ||
# v0.2.10 | ||
## (2020-11-30) | ||
* Update typescript to v4.1.2 [Alexis Svinartchouk] | ||
* Add versionbot changelog [Alexis Svinartchouk] | ||
# v0.2.9 | ||
@@ -9,0 +15,0 @@ ## (2020-07-27) |
{ | ||
"name": "node-raspberrypi-usbboot", | ||
"version": "0.2.9", | ||
"version": "0.2.10-add-versionbot-changelog-58bd9ff059a46e8c5e1e53e9859fbabc9444de0c", | ||
"description": "Transforms Raspberry Pi Compute Modules and Zeros to mass storage devices.", | ||
@@ -32,3 +32,3 @@ "main": "build/index.js", | ||
"devDependencies": { | ||
"@balena/lint": "^5.1.0", | ||
"@balena/lint": "^5.3.0", | ||
"@types/debug": "^4.1.5", | ||
@@ -39,4 +39,4 @@ "@types/node": "^8.10.61", | ||
"ts-node": "^8.10.2", | ||
"typescript": "^3.9.5" | ||
"typescript": "^4.1.2" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
27828970
533