feat: add support for configuring manifest description via env var
This commit is contained in:
parent
d7f3cc11a6
commit
193f81593a
2 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ describe('addon', () => {
|
|||
expect.objectContaining({
|
||||
id: 'webstreamr',
|
||||
name: 'WebStreamr',
|
||||
description: 'Provides HTTP URLs from streaming websites.',
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ const manifest: Manifest = {
|
|||
id: process.env['MANIFEST_ID'] || 'webstreamr',
|
||||
version: '0.2.1', // x-release-please-version
|
||||
name: process.env['MANIFEST_NAME'] || 'WebStreamr',
|
||||
description: `Provides HTTP URLs from streaming websites.`,
|
||||
description: process.env['MANIFEST_DESCRIPTION'] || 'Provides HTTP URLs from streaming websites.',
|
||||
resources: [
|
||||
'stream',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue