feat: add support for configuring manifest description via env var

This commit is contained in:
WebStreamr 2025-05-09 07:12:52 +00:00
parent d7f3cc11a6
commit 193f81593a
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@ describe('addon', () => {
expect.objectContaining({
id: 'webstreamr',
name: 'WebStreamr',
description: 'Provides HTTP URLs from streaming websites.',
}),
);
});

View file

@ -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',
],