Skip to content

Commit dbe7a5a

Browse files
committed
Switch to using rollup
1 parent fa8d921 commit dbe7a5a

14 files changed

+1033
-3136
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.DS_Store
22
.vscode
3+
.rpt2_cache
34
node_modules
4-
bundles
5-
lib
5+
dist
66
types
77
docs
88
npm-debug.log

.npmignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
.DS_Store
2+
.vscode
13
.gitignore
4+
.rpt2_cache
5+
node_modules
26
circle.yml
37
index.html
8+
docs-theme
9+
npm-debug.log

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ $ npm install webusb
8282
In the browser, require the library:
8383

8484
```html
85-
<script type="text/javascript" src="bundles/dap.bundle.js"></script>
85+
<script type="text/javascript" src="dist/dap.umd.js"></script>
8686
```
8787

8888
In Node.js Require the libraries:

circle.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- run: sudo apt-get install libusb-1.0-0-dev
1111
- checkout
1212
- run: npm install
13-
- run: npm run gulp
13+
- run: npm run build
1414
- persist_to_workspace:
1515
root: ../
1616
paths:
@@ -28,7 +28,7 @@ jobs:
2828
- run: mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
2929
- run: git config --global user.name thegecko
3030
- run: git config --global user.email [email protected]
31-
- run: git add --force bundles lib types docs
31+
- run: git add --force dist types docs
3232
- run: git stash save
3333
- run: git checkout gh-pages
3434
- run: git merge master --no-commit

examples/daplink-flash/web.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1>DAPjs WebUSB Flash</h1>
7979
</svg>
8080
</a>
8181

82-
<script type="text/javascript" src="../../bundles/dap.bundle.js"></script>
82+
<script type="text/javascript" src="../../dist/dap.umd.js"></script>
8383

8484
<script>
8585
let dropEl = document.getElementById("drop");

examples/typescript/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"@types/node": "^10.12.26",
1111
"browserify": "^16.2.3",
1212
"dapjs": "^1.1.0",
13+
"express": "^4.16.4",
1314
"tsify": "^4.0.1",
14-
"typescript": "^3.3.3",
15-
"webusb": "^1.1.1"
15+
"typescript": "^3.4.5",
16+
"webusb": "^1.2.2"
1617
}
1718
}

gulpfile.js

-119
This file was deleted.

0 commit comments

Comments
 (0)