Is your feature request related to a problem? Please describe.
I would like to be able to define different behavior for a chrome release vs a firefox release. For example, I would like to be able to have a different release name for my chrome and firefox releases.
Describe the solution you'd like
I would like to be able to add a "firefox" and/or "chrome" key to the .xtbuild.json file or xt-build config in package.json with different values for the configuration options. My config would then look like this
{
"manifest": "./src/extension/manifest.json",
"js_bundles": [
{
"src": "./src/extension/background.js",
"name": "background",
},
{
"src": [
"./src/extension/file1",
"./src/extension/file2",
"./src/extension/file3"
],
"name": "bundle2",
}
],
"firefox": {
"release_name": "release_firefox"
}
}
which would change the release name when releasing for firefox
Describe alternatives you've considered
Another way to achieve this would be to allow overriding config options on the command line, e.g. xt-build -e prod -p firefox --release_name=release_firefox. I would imagine that this solution would be harder to implement, and less robust
Thanks for the awesome project!
Is your feature request related to a problem? Please describe.
I would like to be able to define different behavior for a chrome release vs a firefox release. For example, I would like to be able to have a different release name for my chrome and firefox releases.
Describe the solution you'd like
I would like to be able to add a "firefox" and/or "chrome" key to the
.xtbuild.jsonfile or xt-build config in package.json with different values for the configuration options. My config would then look like thiswhich would change the release name when releasing for firefox
Describe alternatives you've considered
Another way to achieve this would be to allow overriding config options on the command line, e.g.
xt-build -e prod -p firefox --release_name=release_firefox. I would imagine that this solution would be harder to implement, and less robustThanks for the awesome project!