mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-18 11:05:41 +01:00
b91e2919b6
* Add build command for ee * Add config for ee * Add build workflow for ee * Change build pipeline for web ee * Fix name of workflow in trigger * Build ee image in web build workflow * Fix name on matrix * FIx name of the artifact * Comment out zip extract * Add zip extract * All listing dir before unzip * Add pwd * Comment out unzipping * Fix * Add matrix instead of two stages * Remove build web ee workflow * Fix name
28 lines
1.6 KiB
JSON
28 lines
1.6 KiB
JSON
{
|
|
"name": "@bitwarden/web-vault",
|
|
"version": "2022.9.2",
|
|
"scripts": {
|
|
"build:oss": "webpack",
|
|
"build:bit": "webpack -c ../../bitwarden_license/bit-web/webpack.config.js",
|
|
"build:oss:watch": "webpack serve",
|
|
"build:bit:watch": "webpack serve -c ../../bitwarden_license/bit-web/webpack.config.js",
|
|
"build:bit:dev": "cross-env ENV=development npm run build:bit",
|
|
"build:bit:dev:analyze": "cross-env LOGGING=false webpack -c ../../bitwarden_license/bit-web/webpack.config.js --profile --json > stats.json && npx webpack-bundle-analyzer stats.json build/",
|
|
"build:bit:dev:watch": "cross-env ENV=development npm run build:bit:watch",
|
|
"build:bit:qa": "cross-env NODE_ENV=production ENV=qa npm run build:bit",
|
|
"build:bit:cloud": "cross-env NODE_ENV=production ENV=cloud npm run build:bit",
|
|
"build:oss:selfhost:watch": "cross-env ENV=selfhosted npm run build:oss:watch",
|
|
"build:bit:selfhost:watch": "cross-env ENV=selfhosted npm run build:bit:watch",
|
|
"build:oss:selfhost:prod": "cross-env ENV=selfhosted NODE_ENV=production npm run build:oss",
|
|
"build:bit:selfhost:prod": "cross-env ENV=selfhosted NODE_ENV=production npm run build:bit",
|
|
"build:bit:ee": "cross-env NODE_ENV=production ENV=ee npm run build:bit",
|
|
"clean:l10n": "git push origin --delete l10n_master",
|
|
"dist:bit:cloud": "npm run build:bit:cloud",
|
|
"dist:oss:selfhost": "npm run build:oss:selfhost:prod",
|
|
"dist:bit:selfhost": "npm run build:bit:selfhost:prod",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:watch:all": "jest --watchAll"
|
|
}
|
|
}
|