1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

[PM-24646] Add licensed browser builds (#16252)

* feat: create separate bit licensed browser

* feat: refactor webpack config

* fix: mv2 build not working

* feat: add bit versions of all commands

* feat: add bit CI builds

* fix: scss missing from build
This commit is contained in:
Andreas Coroiu
2025-09-04 08:21:50 +02:00
committed by GitHub
parent 54eb54483f
commit b957a0c28f
20 changed files with 738 additions and 461 deletions

View File

@@ -0,0 +1,9 @@
import OssMainBackground from "@bitwarden/browser/background/main.background";
export default class MainBackground {
private ossMain = new OssMainBackground();
async bootstrap() {
await this.ossMain.bootstrap();
}
}