2.0.4 • Published 7 months ago

@webosbrew/webos-packager-plugin v2.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

@webosbrew/webos-packager-plugin

Pack applications to IPK on the fly.

Example

HOC
import { hoc } from '@webosbrew/webos-packager-plugin';

export default hoc({
	id: 'org.acme.product',
	version: '1.0.0',
	options: {
		// if you want to publish app in homebrew channel repo
		emitManifest: true,
		manifest: {
			title: 'ACME Goods',
			description: '',
			iconUrl: '',
			sourceUrl: '',
		},
	},
	app: {
		id: 'org.acme.product',
		// ... webpack configuation
	},
	services: [
		{
			id: 'org.acme.product.service',
			// ... webpack configuation
		},
		// ... extra services
	],
});
Plugin
import { WebOSPackagerPlugin } from '@webosbrew/webos-packager-plugin';

export default {
	// ... webpack configuation
	plugins: [
		new WebOSPackagerPlugin({
			id: 'com.example.app',
			version: '1.0.0',
		}),
	],
};
2.0.4

7 months ago

2.0.3

7 months ago

2.0.2

7 months ago

2.0.1

9 months ago