本文整理汇总了TypeScript中jsonfile.writeFileSync函数的典型用法代码示例。如果您正苦于以下问题:TypeScript writeFileSync函数的具体用法?TypeScript writeFileSync怎么用?TypeScript writeFileSync使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了writeFileSync函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
gulp.task('!manifest', function () {
const meta = util.currentPackage();
const copyInst = util.getCopyInstruction(meta);
const pkgDest = Path.join(copyInst.to, 'package.json');
const pkgJson = jsonfile.readFileSync(util.root('package.json'));
const localPackageJsonPath = util.root(util.FS_REF.SRC_CONTAINER, meta.dir, 'package.json');
if (fs.existsSync(localPackageJsonPath)) {
Object.assign(
pkgJson,
jsonfile.readFileSync(localPackageJsonPath)
)
}
PKGJSON_KEYS_TO_DELETE.forEach( k => { delete pkgJson[k] });
pkgJson.name = meta.dir;
pkgJson.main = `${util.FS_REF.BUNDLE_DIR}/${meta.umd}.rollup.umd.js`;
pkgJson.module = `${util.FS_REF.BUNDLE_DIR}/${meta.umd}.es5.js`;
pkgJson.es2015 = `${util.FS_REF.BUNDLE_DIR}/${meta.umd}.js`;
pkgJson.typings = `${util.FS_REF.SRC_CONTAINER}/${util.getMainOutputFileName(meta)}.d.ts`;
util.tryRunHook(meta.dir, 'packageJSON', pkgJson);
jsonfile.writeFileSync(pkgDest, pkgJson, {spaces: 2});
});
示例2: require
let prepareFunction = () => {
if (pluginBinding.options.shrinkWrap) {
pluginBinding.shellExecuteNpm(packagePath, [ "shrinkwrap" ]);
//
// Filter out any 'resolved' fields
let shrinkWrapFilePath = path.join(packagePath, "npm-shrinkwrap.json");
let shrinkwrap = require(shrinkWrapFilePath);
function replacer(key, val) {
if (key === "resolved" && this.from && this.version) {
return undefined;
}
return val;
}
fs.writeFileSync(shrinkWrapFilePath, JSON.stringify(shrinkwrap, replacer, 2));
}
let versionBump = pluginBinding.options.versionBump;
if (versionBump) {
packageDescriptor = bumpVersion(packageDescriptor, packagePath, versionBump);
jsonFile.writeFileSync(path.join(packagePath, "package.json"), packageDescriptor, { spaces: 4 });
file.contents = new Buffer(JSON.stringify(packageDescriptor));
}
};
示例3: file
@util.GulpClass.Task({
name: 'misc:syncConfig',
desc: `Sync the main tsconfig file (tsconfig.json) and JEST configuration file with paths information.
This is required after each change to a package configuration that results in a file structure change.
This includes adding, removing or changing a package name. Changing the top-level scope, etc..`
})
syncConfig() {
const tsConfig = jsonfile.readFileSync(util.root('tsconfig.json'));
tsConfig.compilerOptions.paths = util.tsConfigPaths();
util.tryRunHook('./', 'tsconfig', tsConfig);
jsonfile.writeFileSync(util.root('tsconfig.json'), tsConfig, {spaces: 2});
const jestConfig = jsonfile.readFileSync(util.root('jest.library.config.json'));
jestConfig.moduleNameMapper = util.jestAlias();
util.tryRunHook('./', 'jestConfig', jestConfig);
jsonfile.writeFileSync(util.root('jest.library.config.json'), jestConfig, {spaces: 2});
}
示例4: Promise
.then( () => {
const p = util.root(util.currentPackage().tsConfigObj.compilerOptions.outDir);
del.sync(p);
const tsConfig = jsonfile.readFileSync(util.root(util.FS_REF.TS_CONFIG_TMP));
tsConfig.compilerOptions.target = 'es5';
jsonfile.writeFileSync(util.root(util.FS_REF.TS_CONFIG_TMP), tsConfig, {spaces: 2});
return new Promise( (resolve, reject) => webpack(config).run((err, stats) => err ? reject(err) : resolve(stats)) );
})
示例5: update
export function jsonPatch<T>(readPath: string): { update: (handler: (data: T) => (T | null | void)) => { save: (savePath: string) => void } } {
return {
update(handler: (data: T) => T): any {
const tsconfig = jsonfile.readFileSync(readPath);
const data = handler(tsconfig);
return {
save(savePath: string): void {
if (data !== null) {
jsonfile.writeFileSync(savePath, data || tsconfig, {spaces: 2});
}
}
};
}
};
}
示例6: function
var saveJSON = function (obj:any, filename: string){
var jsonfile = require('jsonfile');
jsonfile.writeFileSync(filename, obj)
}
示例7:
err;
});
// $ExpectType void
jsonfile.writeFile(file, obj, { spaces: 2 }, err => {
// $ExpectType ErrnoException
err;
});
// $ExpectType void
jsonfile.writeFile(file, obj, { spaces: 2, EOL: '\r\n' }, err => {
// $ExpectType ErrnoException
err;
});
// $ExpectType void
jsonfile.writeFile(file, obj, { flag: 'a' }, err => {
// $ExpectType ErrnoException
err;
});
// $ExpectType Promise<void>
jsonfile.writeFile(file, obj);
// $ExpectType Promise<void>
jsonfile.writeFile(file, obj, { flag: 'a' });
jsonfile.writeFileSync(file, obj);
jsonfile.writeFileSync(file, obj, { spaces: 2 });
jsonfile.writeFileSync(file, obj, { spaces: 2, EOL: '\r\n' });
jsonfile.writeFileSync(file, obj, { flag: 'a' });
示例8: writeFileSync
writeFileSync(filename: string, obj: any, options?: any): any {
return jsonfile.writeFileSync(filename, obj, options);
}