We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 389c3c8 commit 9b1d297Copy full SHA for 9b1d297
2 files changed
packages/office-addin-manifest/package.json
@@ -32,6 +32,7 @@
32
"@types/mocha": "^5.2.5",
33
"@types/node": "^10.5.7",
34
"@types/node-fetch": "^2.1.2",
35
+ "@types/uuid": "^3.4.4",
36
"@types/xml2js": "^0.4.3",
37
"concurrently": "^3.6.1",
38
"copy-dir": "^0.4.0",
packages/office-addin-manifest/src/manifestInfo.ts
@@ -1,9 +1,9 @@
1
import * as fs from "fs";
2
import * as util from "util";
3
+import * as uuid from "uuid";
4
import * as xml2js from "xml2js";
5
import * as xmlMethods from "./xml";
6
const readFileAsync = util.promisify(fs.readFile);
-const uuid = require('uuid/v1');
7
const writeFileAsync = util.promisify(fs.writeFile);
8
type Xml = any;
9
0 commit comments