當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript fs-extra.emptyDir函數代碼示例

本文整理匯總了TypeScript中fs-extra.emptyDir函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript emptyDir函數的具體用法?TypeScript emptyDir怎麽用?TypeScript emptyDir使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了emptyDir函數的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: runFixture

export async function runFixture(
    sourceDir: string, resultDir: string, testConfig: TestConfig):
    Promise<ExecResult> {
  await fse.emptyDir(resultDir);
  await fse.copy(sourceDir, resultDir);

  // Top-Level Integration Test! Test the CLI interface directly.
  return await exec(resultDir, 'node', [
    modulizerBinPath,
    '--out',
    '.',
    '--force',
  ].concat(testConfig.options || []));
}
開發者ID:,項目名稱:,代碼行數:14,代碼來源:

示例2: async

export const build = (args: Args) => async (config: Configuration) => {
  const dist = paths.getDist(args.dest)

  try {
    await fs.ensureDir(dist)
    const previousFileSizes = await measureFileSizesBeforeBuild(dist)

    await fs.emptyDir(dist)
    await copyPublicFolder(dist)

    const result = await builder(config, previousFileSizes)
    onSuccess(dist, result)
  } catch (err) {
    onError(err)
  }
}
開發者ID:leslieSie,項目名稱:docz,代碼行數:16,代碼來源:build.ts

示例3: createCleanCwd

export async function createCleanCwd(lockfilePath: string | null) {
    const logger = getLogger();
    logger.trace('Running \'createCleanCwd\'');

    const newCwdDirPath = path.join(getTmpDir(), '__result');
    await fsExtra.ensureDir(newCwdDirPath);

    logger.trace(`New CWD:'${newCwdDirPath}'`);
    process.chdir(newCwdDirPath);
    await fsExtra.emptyDir(process.cwd());

    await fsExtra.copy(path.join(originalCwd, 'package.json'), path.join(process.cwd(), 'package.json'));
    if (lockfilePath !== null) {
        await fsExtra.copy(path.join(originalCwd, lockfilePath), path.join(process.cwd(), lockfilePath));
    }
}
開發者ID:mutantcornholio,項目名稱:veendor,代碼行數:16,代碼來源:helpers.ts

示例4: createCleanCacheDir

export async function createCleanCacheDir(backendConfig: BackendConfig): Promise<string> {
    const logger = getLogger();
    logger.trace(`Running 'createCleanCacheDir' for ${backendConfig.alias}`);

    const cacheDirPath = path.join(getTmpDir(), backendConfig.alias);

    if (backendConfig.backend.keepCache) {
        logger.trace(`Running 'ensureDir' for ${cacheDirPath}`);
        await fsExtra.ensureDir(cacheDirPath);
        return cacheDirPath;
    }

    logger.trace(`Running 'emptyDir' for ${cacheDirPath}`);
    return fsExtra.emptyDir(cacheDirPath)
        .then(() => {
            logger.trace(`Cache directory for backend '${backendConfig.alias}' is set`);
            return cacheDirPath;
        });
}
開發者ID:mutantcornholio,項目名稱:veendor,代碼行數:19,代碼來源:helpers.ts

示例5:

fs.ensureFile(path).then(() => {
	// stub
});
fs.ensureFile(path, errorCallback);
fs.ensureFileSync(path);
fs.ensureLink(path).then(() => {
	// stub
});
fs.ensureLink(path, errorCallback);
fs.ensureLinkSync(path);
fs.ensureSymlink(path).then(() => {
	// stub
});
fs.ensureSymlink(path, errorCallback);
fs.ensureSymlinkSync(path);
fs.emptyDir(path).then(() => {
	// stub
});
fs.emptyDir(path, errorCallback);
fs.emptyDirSync(path);
fs.pathExists(path).then((_exist: boolean) => {
	// stub
});
fs.pathExists(path, (_err: Error, _exists: boolean) => { });
const x: boolean = fs.pathExistsSync(path);

fs.rename(src, dest, errorCallback);
fs.renameSync(src, dest);
fs.truncate(path, len, errorCallback);
fs.truncateSync(path, len);
fs.chown(path, uid, gid, errorCallback);
開發者ID:gilamran,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:fs-extra-tests.ts

示例6: async

 this.nuxt.hook('build:before', async () => {
   fs.emptyDir(StaticDataDir);
   await Promise.all([writeData(MediumDataFile, await getMediumPosts())]);
 });
開發者ID:vaskevich,項目名稱:osv.im,代碼行數:4,代碼來源:data.ts

示例7:

 const rm = () => fs.emptyDir(completionsDir)
開發者ID:jimmyurl,項目名稱:cli,代碼行數:1,代碼來源:recache.ts

示例8:

fs.readJson(file, (error: Error, jsonObject: any) => {});
fs.readJson(file, readOptions, (error: Error, jsonObject: any) => {});
fs.readJSON(file, (error: Error, jsonObject: any) => {});
fs.readJSON(file, readOptions, (error: Error, jsonObject: any) => {});

fs.readJsonSync(file, readOptions);
fs.readJSONSync(file, readOptions);

fs.remove(dir, errorCallback);
fs.removeSync(dir);

fs.writeJson(file, object, errorCallback);
fs.writeJson(file, object, writeOptions, errorCallback);
fs.writeJSON(file, object, errorCallback);
fs.writeJSON(file, object, writeOptions, errorCallback);

fs.writeJsonSync(file, object, writeOptions);
fs.writeJSONSync(file, object, writeOptions);

fs.ensureDir(path, errorCallback);
fs.ensureDirSync(path);
fs.ensureFile(path, errorCallback);
fs.ensureFileSync(path);
fs.ensureLink(path, errorCallback);
fs.ensureLinkSync(path);
fs.ensureSymlink(path, errorCallback);
fs.ensureSymlinkSync(path);
fs.emptyDir(path, errorCallback);
fs.emptyDirSync(path);
開發者ID:YousefED,項目名稱:DefinitelyTyped,代碼行數:29,代碼來源:fs-extra-tests.ts

示例9: teardown

	teardown((done) => emptyDir(tempFolder, done));
開發者ID:rlugojr,項目名稱:vscode-htmltagwrap,代碼行數:1,代碼來源:extension.test.ts


注:本文中的fs-extra.emptyDir函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。