Skip to content

Commit

Permalink
Feature/non blocking (#57)
Browse files Browse the repository at this point in the history
* add hour in notifications, typo, change return type when run batch

* Add support for chains jobrunr

* Edit build budget

* Update console.log to console.debug or console.error

* Change header content-type strategy

* Fix user populate

* Change scheduling cron pattern

* deep copy object when edit (fix cancel trouble)

* Fix notifications trouble (same notifications)

* Add tokenEndpoint var in environment file

* Fix notifications bug

* Fix send file bug (bad content-type)

* fix trouble jwt connection

* don't send two notifications when run chain

* delete code commented

* fix sonar code smell issues
  • Loading branch information
dtrouillet authored Feb 26, 2021
1 parent d8b4cdd commit 01883b3
Show file tree
Hide file tree
Showing 142 changed files with 1,048 additions and 1,071 deletions.
311 changes: 156 additions & 155 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,159 +1,160 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ebad-front": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/ebad-front",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets",
"src/silent-refresh.html"
],
"styles": [
"src/styles.scss"
],
"scripts": [
"node_modules/apexcharts/dist/apexcharts.min.js",
"node_modules/jquery/dist/jquery.js",
"node_modules/datatables.net/js/jquery.dataTables.js"
]
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.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"
}, {
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ebad-front": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"prefix": "app",
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/ebad-front",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets",
"src/silent-refresh.html"
],
"styles": [
"src/styles.scss"
],
"scripts": [
"node_modules/apexcharts/dist/apexcharts.min.js",
"node_modules/jquery/dist/jquery.js",
"node_modules/datatables.net/js/jquery.dataTables.js"
]
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "3mb",
"maximumError": "6mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}

]
}
}
},
"serve": {
"builder": "ngx-build-plus:dev-server",
"options": {
"browserTarget": "ebad-front:build",
"extraWebpackConfig": "./cypress/coverage.webpack.js"
},
"configurations": {
"production": {
"browserTarget": "ebad-front:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ebad-front:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.scss"
],
"scripts": [],
"assets": [
"src/favicon.ico",
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"cypress-run": {
"builder": "@briebug/cypress-schematic:cypress",
"options": {
"devServerTarget": "ebad-front:serve"
},
"configurations": {
"production": {
"devServerTarget": "ebad-front:serve:production"
}
}
},
"cypress-open": {
"builder": "@briebug/cypress-schematic:cypress",
"options": {
"devServerTarget": "ebad-front:serve",
"watch": true,
"headless": false
},
"configurations": {
"production": {
"devServerTarget": "ebad-front:serve:production"
}
}
},
"e2e": {
"builder": "@briebug/cypress-schematic:cypress",
"options": {
"devServerTarget": "ebad-front:serve",
"watch": true,
"headless": false
},
"configurations": {
"production": {
"devServerTarget": "ebad-front:serve:production"
}
}
}
}
}
},
"defaultProject": "ebad-front",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
}
}
]
}
}
},
"serve": {
"builder": "ngx-build-plus:dev-server",
"options": {
"browserTarget": "ebad-front:build",
"extraWebpackConfig": "./cypress/coverage.webpack.js"
},
"configurations": {
"production": {
"browserTarget": "ebad-front:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ebad-front:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.spec.json",
"karmaConfig": "src/karma.conf.js",
"styles": [
"src/styles.scss"
],
"scripts": [],
"assets": [
"src/favicon.ico",
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"cypress-run": {
"builder": "@briebug/cypress-schematic:cypress",
"options": {
"devServerTarget": "ebad-front:serve"
},
"configurations": {
"production": {
"devServerTarget": "ebad-front:serve:production"
}
}
},
"cypress-open": {
"builder": "@briebug/cypress-schematic:cypress",
"options": {
"devServerTarget": "ebad-front:serve",
"watch": true,
"headless": false
},
"configurations": {
"production": {
"devServerTarget": "ebad-front:serve:production"
}
}
},
"e2e": {
"builder": "@briebug/cypress-schematic:cypress",
"options": {
"devServerTarget": "ebad-front:serve",
"watch": true,
"headless": false
},
"configurations": {
"production": {
"devServerTarget": "ebad-front:serve:production"
}
}
}
}
}
},
"defaultProject": "ebad-front",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
}
}
Loading

0 comments on commit 01883b3

Please sign in to comment.