Skip to content

Commit

Permalink
Fix to ensure it builds/package correctly as uuid is an external lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Warren Buckley committed May 9, 2017
1 parent 9bab67a commit 38b3763
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/IISExpress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ import * as vscode from 'vscode';
import * as process from 'child_process';
import * as path from "path";
import * as settings from './settings';
import * as uuidV4 from 'uuid/v4';
var iconv=require('iconv-lite')

//External libraries
let uuidV4 = require('uuid/v4');
let iconv=require('iconv-lite');

export interface IExpressArguments {
path?: string;
Expand Down

0 comments on commit 38b3763

Please sign in to comment.