Skip to content

Support for using different xtbuild config for firefox and chrome #196

Description

@danny-does-stuff

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!

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions