2017-09-02 01:50:31 +00:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
export function mkdir(dir: string): void {
|
|
|
|
try {
|
|
|
|
fs.mkdirSync(dir);
|
|
|
|
} catch(e) {
|
|
|
|
if(!(e instanceof Error)) throw e;
|
|
|
|
switch((<Error & {code: string}>e).code) {
|
|
|
|
case 'ENOENT':
|
2017-10-16 23:58:57 +00:00
|
|
|
const dirname = path.dirname(dir);
|
|
|
|
if(dirname === dir) throw e;
|
|
|
|
mkdir(dirname);
|
2017-09-02 01:50:31 +00:00
|
|
|
mkdir(dir);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
try {
|
|
|
|
const stat = fs.statSync(dir);
|
|
|
|
if(stat.isDirectory()) return;
|
|
|
|
} catch(e) {
|
|
|
|
console.log(e);
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//tslint:disable
|
|
|
|
const Module = require('module');
|
|
|
|
export function nativeRequire<T>(module: string): T {
|
|
|
|
return Module.prototype.require.call({paths: Module._nodeModulePaths(__dirname)}, module);
|
|
|
|
}
|
|
|
|
//tslint:enable
|