Giter Site home page Giter Site logo

gulp-chrome-manifest's Introduction

NPM version Build Status Dependency Status

gulp plug-in manages properties in manifest for Chrome Apps or Extensions.

Getting Started

The plug-in generates stream of files according to file list in manifest. Follow up, You can get a new manifest that has newer properties has been removed or modified for production version.

Install

$ npm install --save gulp-chrome-manifest

Usage

var manifest = require('gulp-chrome-manifest');
gulp.task('default', function() {
	return gulp.src('fixtures/manifest.json')
		.pipe(manifest({
			buildnumber: true,
			exclude: [
			  'key'
			],
			background: {
				target: 'scripts/background.js',
				exclude: [
					'scripts/not-exist-test-script1.js',
					'scripts/willbe-remove-only-for-debug.js',
					'components/jquery/jquery.min.js',
				]
			}
		}))
		.pipe(gulpif('*.css', cssmin()))
		.pipe(gulpif('*.js', sourcemaps.init()))
		.pipe(gulpif('*.js', uglify()))
		.pipe(gulpif('*.js', sourcemaps.write()))
		.pipe(gulp.dest('.tmp'));
});

Options

buildnumber

Auto-increment version in manifest. Can be:

  • true: Increase build number
  • false or undefined: Do not increase build number
  • String: Update version as passed value. version should be in this format

exclude

Exclude fields from source manifest.json. Using exclude, If there is fields what you want to prevent to publish.

background

Concatenate scripts in background.scripts or app.background of manifest for uglify / minify / sourcemap

  • target: String, Set new background script path for concatenated
  • exclude: Array, exclude script in background.scripts or app.background of manifest

License

MIT © Jimmy Moon

gulp-chrome-manifest's People

Contributors

bragolgirith avatar oldergod avatar ragingwind avatar ramijarrar avatar ssreekanth avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.