File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { Observable } from 'rx' ;
2
- import uuid from 'node- uuid' ;
2
+ import uuid from 'uuid' ;
3
3
import moment from 'moment' ;
4
4
import dedent from 'dedent' ;
5
5
import debugFactory from 'debug' ;
Original file line number Diff line number Diff line change 74
74
"morgan" : " ^1.6.1" ,
75
75
"mousetrap" : " ^1.6.0" ,
76
76
"node-emoji" : " ^1.4.1" ,
77
- "node-uuid" : " ^1.4.3" ,
78
77
"nodemailer" : " ^2.1.0" ,
79
78
"nodemailer-ses-transport" : " ^1.3.0" ,
80
79
"normalize-url" : " ^1.3.1" ,
117
116
"sanitize-html" : " ^1.11.1" ,
118
117
"snyk" : " ^1.19.1" ,
119
118
"store" : " https://github.com/berkeleytrue/store.js.git#feature/noop-server" ,
119
+ "uuid" : " ^3.0.1" ,
120
120
"validator" : " ^6.0.0"
121
121
},
122
122
"devDependencies" : {
Original file line number Diff line number Diff line change 1
1
/* eslint-disable no-process-exit */
2
2
require ( 'dotenv' ) . load ( ) ;
3
3
var Rx = require ( 'rx' ) ,
4
- uuid = require ( 'node- uuid' ) ,
4
+ uuid = require ( 'uuid' ) ,
5
5
assign = require ( 'lodash/object/assign' ) ,
6
6
mongodb = require ( 'mongodb' ) ,
7
7
secrets = require ( '../config/secrets' ) ;
Original file line number Diff line number Diff line change 1
1
import passport from 'passport' ;
2
2
import { PassportConfigurator } from 'loopback-component-passport' ;
3
3
import passportProviders from './passport-providers' ;
4
- import uuid from 'node- uuid' ;
4
+ import uuid from 'uuid' ;
5
5
import { generateKey } from 'loopback-component-passport/lib/models/utils' ;
6
6
7
7
import {
You can’t perform that action at this time.
0 commit comments