ci: add a web configuration

This commit is contained in:
Michel Jonathan Schmitz
2020-05-15 17:09:15 +02:00
parent 49b7c6d383
commit d2517ae114
5 changed files with 1005 additions and 8815 deletions

View File

@@ -36,7 +36,7 @@ setup:
build: build:
stage: build stage: build
script: script:
- npm run build:prod - npm run build:web
artifacts: artifacts:
paths: paths:
- www - www

View File

@@ -62,6 +62,27 @@
}, },
"ci": { "ci": {
"progress": false "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" "browserTarget": "app:build:production"
}, },
"ci": { "ci": {
"progress": false "progress": false,
"browserTarget": "app:build:web"
},
"web": {
"browserTarget": "app:build:web"
} }
} }
}, },

9764
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,6 +12,7 @@
"scripts": { "scripts": {
"build": "ng build", "build": "ng build",
"build:prod": "ng build --prod", "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'", "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", "check-configuration": "openstapps-configuration",
"e2e": "ng e2e --no-webdriver-update", "e2e": "ng e2e --no-webdriver-update",
@@ -23,11 +24,12 @@
"lint": "ng lint", "lint": "ng lint",
"ng": "ng", "ng": "ng",
"postversion": "npm run changelog", "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", "prepublishOnly": "npm ci && npm run build",
"preversion": "npm run prepublishOnly", "preversion": "npm run prepublishOnly",
"push": "git push && git push origin \"v$npm_package_version\"", "push": "git push && git push origin \"v$npm_package_version\"",
"start": "ng serve", "start": "ng serve",
"start:web": "ng serve --configuration=web",
"test": "ng test", "test": "ng test",
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'" "tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
}, },
@@ -47,9 +49,9 @@
"@ionic/storage": "2.2.0", "@ionic/storage": "2.2.0",
"@ngx-translate/core": "11.0.1", "@ngx-translate/core": "11.0.1",
"@ngx-translate/http-loader": "4.0.0", "@ngx-translate/http-loader": "4.0.0",
"@openstapps/api": "0.17.0", "@openstapps/api": "0.22.0",
"@openstapps/configuration": "0.22.0", "@openstapps/configuration": "0.22.0",
"@openstapps/core": "0.31.0", "@openstapps/core": "0.34.0",
"@openstapps/logger": "0.4.0", "@openstapps/logger": "0.4.0",
"cordova-android": "8.0.0", "cordova-android": "8.0.0",
"cordova-browser": "6.0.0", "cordova-browser": "6.0.0",

View 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,
};