Skip to content

Commit f60923e

Browse files
committed
Merge branch 'marcbachmann-update-uuid'
node-uuid to uuid pull request.
2 parents ef792ac + d7925f3 commit f60923e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-sequence-viewer",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A React wrapper around the BioJS sequence-viewer component",
55
"main": "lib/index.js",
66
"jsnext:main": "es/index.js",
@@ -23,8 +23,8 @@
2323
"bootstrap": "^3.3.7",
2424
"handlebars": "3.0.2",
2525
"jquery": "^3.1.0",
26-
"node-uuid": "^1.4.7",
27-
"sequence-viewer": "^0.2.18"
26+
"sequence-viewer": "^0.2.18",
27+
"uuid": "^3.0.0"
2828
},
2929
"peerDependencies": {
3030
"react": "15.x"

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, {PropTypes, Component} from 'react';
2-
import { v4 } from 'node-uuid';
2+
import { v4 } from 'uuid';
33

44
import Bootstrap from 'bootstrap/dist/css/bootstrap.min.css';
55
// See nwb.config.js for some webpack magic that allows this to work.

0 commit comments

Comments
 (0)