Skip to content

taggon/gulp-plist

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

gulp-plist Build Status

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

About

gulp plugin modifies Mac OS Plist files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published