Index: frontend/node_modules/temp-dir/index.js
===================================================================
--- frontend/node_modules/temp-dir/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/temp-dir/index.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,13 @@
+'use strict';
+const fs = require('fs');
+const os = require('os');
+
+const tempDirectorySymbol = Symbol.for('__RESOLVED_TEMP_DIRECTORY__');
+
+if (!global[tempDirectorySymbol]) {
+	Object.defineProperty(global, tempDirectorySymbol, {
+		value: fs.realpathSync(os.tmpdir())
+	});
+}
+
+module.exports = global[tempDirectorySymbol];
