gulp-magepack

1.0.3 • Public • Published

gulp-magepack

Automate Magento 1 extension packaging for gulp

MIT License Version 1.0.0 Travis CI

About

This gulp plugin was made for developers who use gulp as part of their build system when making Magento 1 extensions. Instead of generating a new package.xml file from Magento Connect every time a new version of their extension is released, this plugin can update parts of their project's package.xml file. The version, date, time, and content hashes are all updated automatically. Please note that the rest of the data in the package.xml file is not generated, instead you can pass an already filled out package.xml file as a template and this plugin will update the dynamic nodes.

Install

npm i -D gulp-magepack

or install with suggested plugins:

npm i -D gulp-magepack gulp-gzip gulp-tar

Usage

Below is a sample gulp file that uses gulp-gzip and gulp-tar with this plugin in order to package the generated package.xml file based on the passed source files.

const gulp = require ("gulp")
const gzip = require ("gulp-gzip")
const tar = require ("gulp-tar")
const magepack = require ("gulp-magepack")

const EXTENSION_NAMESPACE = "JetRails_Demo"
const EXTENSION_VERSION = "1.0.0"

gulp.task ( "package", () => {
	let options = {
		"template": "package.xml",
		"output": "package.xml",
		"version": EXTENSION_VERSION
	}
	gulp.src ([ "src/**/*" ])
		.pipe ( magepack ( options ) )
		.pipe ( tar (`${EXTENSION_NAMESPACE}-${EXTENSION_VERSION}`) )
		.pipe ( gzip ({ extension: "tgz" }) )
		.pipe ( gulp.dest ("dist") )
})

Options

An options object will be passed to the plugin as shown in the example above. Below are all passable options:

  • REQUIRED version: String that represents your package's version, i.e. 1.0.0
  • OPTIONAL template: String path to template package.xml file to use as base. This is optional but if it is passed, then it must exist as an absolute or relative path.
  • OPTIONAL output: String path, either relative or absolute, for the outputted package.xml file. If this is not present, then no output file will be generated. And only a virtual package.xml file will be added to the file stream.

Package Sidebar

Install

npm i gulp-magepack

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

15.6 kB

Total Files

10

Last publish

Collaborators

  • null93