Skip to content

Commit

Permalink
SNOW-830950: Configure nyc - Import uuidv4 another way #430
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pmotacki committed Jul 3, 2023
1 parent 504aec9 commit 2d8cc07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/connection/connection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2015-2021 Snowflake Computing Inc. All rights reserved.
*/
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');
const Url = require('url');
const QueryString = require('querystring');
const GSErrors = require('../constants/gs_errors')
Expand Down
2 changes: 1 addition & 1 deletion lib/connection/statement.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

const async = require('async');
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');

var Url = require('url');
var QueryString = require('querystring');
Expand Down
2 changes: 1 addition & 1 deletion lib/services/sf.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
*/

const axios = require('axios');
const uuidv4 = require('uuid/v4');
const { v4: uuidv4 } = require('uuid');
const EventEmitter = require('events').EventEmitter;
const Util = require('../util');
const Errors = require('../errors');
Expand Down

0 comments on commit 2d8cc07

Please sign in to comment.