Add new POC web artifact (#4581)
* Add the poc web artifact. * Fix npm command typo
This commit is contained in:
parent
f274540896
commit
05dec84f0f
|
@ -80,6 +80,8 @@ jobs:
|
||||||
npm_command: "dist:bit:selfhost"
|
npm_command: "dist:bit:selfhost"
|
||||||
- name: "cloud-QA"
|
- name: "cloud-QA"
|
||||||
npm_command: "build:bit:qa"
|
npm_command: "build:bit:qa"
|
||||||
|
- name: "cloud-POC"
|
||||||
|
npm_command: "build:bit:poc"
|
||||||
- name: "ee"
|
- name: "ee"
|
||||||
npm_command: "build:bit:ee"
|
npm_command: "build:bit:ee"
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"urls": {
|
||||||
|
"icons": "https://icons.poc.bitwarden.pw",
|
||||||
|
"notifications": "https://notifications.poc.bitwarden.pw",
|
||||||
|
"scim": "https://scim.poc.bitwarden.pw"
|
||||||
|
},
|
||||||
|
"flags": {
|
||||||
|
"secretsManager": true,
|
||||||
|
"showPasswordless": true
|
||||||
|
}
|
||||||
|
}
|
|
@ -10,6 +10,7 @@
|
||||||
"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: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: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:qa": "cross-env NODE_ENV=production ENV=qa npm run build:bit",
|
||||||
|
"build:bit:poc": "cross-env NODE_ENV=production ENV=poc npm run build:bit",
|
||||||
"build:bit:cloud": "cross-env NODE_ENV=production ENV=cloud 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: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:bit:selfhost:watch": "cross-env ENV=selfhosted npm run build:bit:watch",
|
||||||
|
|
Loading…
Reference in New Issue