gulp-plist
v0.9.0
Published
gulp plugin to manage Mac OS Plist
Downloads
156
Maintainers
Readme
gulp-plist
gulp-plist is a gulp plugin modifies Mac OS Plist (property list) files which are often used in OS X and iOS applications. It can read/write both binary and plain xml plist format.
Install
$ npm install --save-dev gulp-plist
Usage
const gulp = require('gulp');
const plist = require('gulp-plist');
gulp.task('default', () => {
return gulp.src('src/Info.plist')
.pipe(plist({
CFBundleDisplayName: 'My App'
})
.pipe(gulp.dest('dist'));
});
Or, you can pass a modifier function to the plugin:
const gulp = require('gulp');
const plist = require('gulp-plist');
gulp.task('default', () => {
return gulp.src('src/Info.plist')
.pipe(plist(json => {
json.CFBundleDisplayName = 'My App';
return json;
})
.pipe(gulp.dest('dist'));
});
The plugin takes an optional second argument that represents settings.
Currently only writeBinary
option is supported. If you want to write binary plist files, set the option to true
. The default value is false
.
const gulp = require('gulp');
const plist = require('gulp-plist');
gulp.task('default', () => {
return gulp.src('src/Info.plist')
.pipe(plist({
CFBundleDisplayName: 'My App'
}, {
writeBinary: true
})
.pipe(gulp.dest('dist'));
});
License
MIT © Taegon Kim