gulp plugin to manage Mac OS Plist
npm install gulp-plist3gulp-plist3 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.
``sh`
$ npm install --save-dev gulp-plist3
(command output)
`js
const gulp = require('gulp');
const peditor = require('gulp-plist3');
gulp.task('default', function(){
return gulp.src('src/Info.plist')
.pipe(peditor({
CFBundleDisplayName: 'My App'
})
.pipe(gulp.dest('dist'));
});
`
Or, you can pass an editor function to the plugin:
`js
const gulp = require('gulp');
const peditor = require('gulp-plist3');
gulp.task('default', function(){
return gulp.src('src/Info.plist')
.pipe(peditor(function(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.
`js
const gulp = require('gulp');
const peditor = require('gulp-plist3');
gulp.task('default', function(){
return gulp.src('src/Info.plist')
.pipe(peditor({
CFBundleDisplayName: 'My App'
}, {
writeBinary: true
})
.pipe(gulp.dest('dist'));
});
`
- Not supported modifying ` type yet.
MIT © Taegon Kim