2.0.1 • Published 9 months ago

@kitsuned/webos-packager-plugin v2.0.1

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

@kitsuned/webos-packager-plugin

Webpack plugin that packages emitted files to IPK file that can be installed on LG webOS TV.

Additionally, this plugin can generate a webOS Homebrew Channel manifest by using the emitManifest property.

Example

HOC
import { hoc } from '@kitsuned/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
		},
		// ... other services
	],
});
Plugin
import { WebOSPackagerPlugin } from '@kitsuned/webos-packager-plugin';

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

9 months ago

2.0.0

9 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.0.0

1 year ago