mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-22 09:32:41 +00:00
ci: add a web configuration
This commit is contained in:
@@ -36,7 +36,7 @@ setup:
|
||||
build:
|
||||
stage: build
|
||||
script:
|
||||
- npm run build:prod
|
||||
- npm run build:web
|
||||
artifacts:
|
||||
paths:
|
||||
- www
|
||||
|
||||
27
angular.json
27
angular.json
@@ -62,6 +62,27 @@
|
||||
},
|
||||
"ci": {
|
||||
"progress": false
|
||||
},
|
||||
"web": {
|
||||
"fileReplacements": [{
|
||||
"replace": "src/environments/environment.ts",
|
||||
"with": "src/environments/environment.web.ts"
|
||||
}
|
||||
],
|
||||
"optimization": true,
|
||||
"outputHashing": "all",
|
||||
"sourceMap": false,
|
||||
"extractCss": true,
|
||||
"namedChunks": false,
|
||||
"aot": true,
|
||||
"extractLicenses": true,
|
||||
"vendorChunk": false,
|
||||
"buildOptimizer": true,
|
||||
"budgets": [{
|
||||
"type": "initial",
|
||||
"maximumWarning": "2mb",
|
||||
"maximumError": "5mb"
|
||||
}]
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -75,7 +96,11 @@
|
||||
"browserTarget": "app:build:production"
|
||||
},
|
||||
"ci": {
|
||||
"progress": false
|
||||
"progress": false,
|
||||
"browserTarget": "app:build:web"
|
||||
},
|
||||
"web": {
|
||||
"browserTarget": "app:build:web"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
9764
package-lock.json
generated
9764
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -12,6 +12,7 @@
|
||||
"scripts": {
|
||||
"build": "ng build",
|
||||
"build:prod": "ng build --prod",
|
||||
"build:web": "ng build --configuration=web",
|
||||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
|
||||
"check-configuration": "openstapps-configuration",
|
||||
"e2e": "ng e2e --no-webdriver-update",
|
||||
@@ -23,11 +24,12 @@
|
||||
"lint": "ng lint",
|
||||
"ng": "ng",
|
||||
"postversion": "npm run changelog",
|
||||
"pree2e": "webdriver-manager update --gecko false --versions.chrome 76.0.3809.126",
|
||||
"pree2e": "webdriver-manager update --gecko false --versions.chrome 80.0.3987.10600",
|
||||
"prepublishOnly": "npm ci && npm run build",
|
||||
"preversion": "npm run prepublishOnly",
|
||||
"push": "git push && git push origin \"v$npm_package_version\"",
|
||||
"start": "ng serve",
|
||||
"start:web": "ng serve --configuration=web",
|
||||
"test": "ng test",
|
||||
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
|
||||
},
|
||||
@@ -47,9 +49,9 @@
|
||||
"@ionic/storage": "2.2.0",
|
||||
"@ngx-translate/core": "11.0.1",
|
||||
"@ngx-translate/http-loader": "4.0.0",
|
||||
"@openstapps/api": "0.17.0",
|
||||
"@openstapps/api": "0.22.0",
|
||||
"@openstapps/configuration": "0.22.0",
|
||||
"@openstapps/core": "0.31.0",
|
||||
"@openstapps/core": "0.34.0",
|
||||
"@openstapps/logger": "0.4.0",
|
||||
"cordova-android": "8.0.0",
|
||||
"cordova-browser": "6.0.0",
|
||||
|
||||
19
src/environments/environment.web.ts
Normal file
19
src/environments/environment.web.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* Copyright (C) 2018, 2019 StApps
|
||||
* This program is free software: you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the Free
|
||||
* Software Foundation, version 3.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
export const environment = {
|
||||
backend_url: 'http://localhost:3000',
|
||||
backend_version: '1.0.0',
|
||||
production: true,
|
||||
};
|
||||
Reference in New Issue
Block a user