Skip to content

Commit

Permalink
Merge f8defb9 into 6107ebe
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbachmann committed Nov 23, 2016
2 parents 6107ebe + f8defb9 commit 67e8287
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/ctx-utils/sublist.js
@@ -1,5 +1,5 @@
'use strict';
var uuid = require('node-uuid'),
var uuid = require('uuid'),
vmSim = require('../../src/vm-sim'),
$metadata = require('../db-utils/metadata');

Expand Down
2 changes: 1 addition & 1 deletion lib/nsobj/record.js
@@ -1,7 +1,7 @@
'use strict';
var $metadata = require('../db-utils/metadata'),
$sublist = require('../ctx-utils/sublist'),
uuid = require('node-uuid');
uuid = require('uuid');

/**
* Return a new instance of nlobjRecord used for accessing and manipulating record objects.
Expand Down
2 changes: 1 addition & 1 deletion nsapi.js
Expand Up @@ -2,7 +2,7 @@
var vmSim = require('./src/vm-sim');

// load node-uuid before create window property in global
require('node-uuid');
require('uuid');

var moment = require('moment');
moment.createFromInputFallback = function(config) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -41,9 +41,9 @@
"minimatch": "3.0.0",
"moment": "2.11.2",
"morgan": "1.6.1",
"node-uuid": "1.4.7",
"ns-formula-parse": "0.3.0",
"sync-request": "3.0.0",
"uuid": "^3.0.0",
"xmldom": "0.1.22",
"xpath": "0.0.21"
},
Expand Down
2 changes: 1 addition & 1 deletion src/init.js
Expand Up @@ -5,7 +5,7 @@ var server = require('./server'),
path = require('path'),
glob = require('glob'),
_ = require('lodash'),
uuid = require('node-uuid');
uuid = require('uuid');

/**
* Alternative a cache created by 'require(path)'.
Expand Down

0 comments on commit 67e8287

Please sign in to comment.