Merge pull request #47 from thegecko/dependencies

Dependencies
This commit is contained in:
Rob Moran
2020-05-10 10:30:52 +01:00
committed by GitHub
7 changed files with 1797 additions and 1562 deletions

View File

@@ -1,4 +1,5 @@
_flash
_if
firmware
.gitignore
circle.yml

View File

@@ -34,7 +34,7 @@ https://thegecko.github.io/web-bluetooth-dfu/
## Prerequisites
[Node.js > v6.15.0](https://nodejs.org), which includes `npm`.
[Node.js > v8.14.0](https://nodejs.org), which includes `npm`.
## Installation
@@ -64,6 +64,9 @@ https://devzone.nordicsemi.com/blogs/1085/getting-started-with-nordics-secure-df
tl;dr
__J-LINK Interface Firmware__
- Ensure device is running the J-LINK interface firmware available from [Nordic](https://www.nordicsemi.com/Software-and-tools/Development-Kits/nRF52-DK)
__Download / Install__
- Download [Nordic SDK](https://developer.nordicsemi.com/nRF5_SDK/)
- Install [J-Link Software Package](https://www.segger.com/downloads/jlink)

Binary file not shown.

Binary file not shown.

View File

@@ -3,11 +3,11 @@ version: 2
jobs:
build:
docker:
- image: circleci/node:6.15.0
- image: circleci/node:8.14.0
steps:
- checkout
- run: npm install
- run: npm run gulp
- run: npm run build
- persist_to_workspace:
root: ../
paths:

3313
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "web-bluetooth-dfu",
"version": "1.1.0",
"version": "1.2.0",
"description": "Device firmware update with Web Bluetooth",
"homepage": "https://thegecko.github.io/web-bluetooth-dfu/",
"author": "Rob Moran <github@thegecko.org>",
@@ -24,31 +24,31 @@
"web-bluetooth"
],
"scripts": {
"gulp": "gulp",
"build": "gulp",
"example": "node examples/node.js"
},
"engines": {
"node": ">=6.15.0"
"node": ">=8.14.0"
},
"dependencies": {
"@types/node": "^8.0.54",
"@types/web-bluetooth": "0.0.4"
"@types/node": "^8.10.40",
"@types/web-bluetooth": "0.0.5"
},
"devDependencies": {
"browserify": "^15.0.0",
"crc-32": "^1.0.2",
"del": "^3.0.0",
"browserify": "^16.5.1",
"crc-32": "^1.2.0",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.3",
"gulp-uglify": "^3.0.0",
"jszip": "^3.1.3",
"merge2": "^1.2.0",
"progress": "^2.0.0",
"tslint": "5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.6.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"jszip": "^3.4.0",
"merge2": "^1.3.0",
"progress": "^2.0.3",
"tslint": "^6.1.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webbluetooth": "^2.0.1"