Revent another unneeded change

This commit is contained in:
Avi Vahl
2017-03-22 21:07:27 +02:00
parent a0db0e420c
commit 06c0bdf971
+1 -1
View File
@@ -23,7 +23,7 @@ async function main() {
// Generate local module
const localDir = path.join("..", module);
ensureDir(localDir);
fs.writeFileSync(path.join(localDir, "index.d.ts"), `// TypeScript Version: 2.2\nimport { ${module} } from "../index";\nexport = ${module};`);
fs.writeFileSync(path.join(localDir, "index.d.ts"), `import { ${module} } from "../index";\nexport = ${module};`);
// Generate non-local module
if (!notOnNpm.has(module)) {