Skip to content

Commit

Permalink
Merge pull request #328 from BellumGens/application-builder
Browse files Browse the repository at this point in the history
feat(build): switching to application builder
  • Loading branch information
kdinev authored Jan 17, 2024
2 parents 7b8b8c1 + c411171 commit 96a0cda
Show file tree
Hide file tree
Showing 14 changed files with 930 additions and 541 deletions.
40 changes: 20 additions & 20 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/bellumgens/browser",
"outputPath": "dist/bellumgens",
"index": "projects/bellumgens/src/index.html",
"main": "projects/bellumgens/src/main.ts",
"browser": "projects/bellumgens/src/main.ts",
"server": "projects/bellumgens/src/main.server.ts",
"prerender": true,
"ssr": {
"entry": "projects/bellumgens/server.ts"
},
"polyfills": [
"zone.js",
"@angular/localize/init"
Expand All @@ -44,9 +49,7 @@
"scripts": [
"./node_modules/hammerjs/hammer.min.js"
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true,
Expand Down Expand Up @@ -81,11 +84,8 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": true,
"i18nMissingTranslation": "error",
"ngswConfigPath": "projects/bellumgens/src/ngsw-config.json"
"serviceWorker": "projects/bellumgens/src/ngsw-config.json",
"i18nMissingTranslation": "error"
},
"bg": {
"localize": [
Expand Down Expand Up @@ -261,11 +261,16 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/ebleague/browser",
"outputPath": "dist/ebleague",
"index": "projects/ebleague/src/index.html",
"main": "projects/ebleague/src/main.ts",
"browser": "projects/ebleague/src/main.ts",
"server": "projects/ebleague/src/main.server.ts",
"prerender": true,
"ssr": {
"entry": "projects/ebleague/server.ts"
},
"polyfills": ["zone.js"],
"tsConfig": "projects/ebleague/tsconfig.app.json",
"assets": [
Expand All @@ -281,9 +286,7 @@
"scripts": [
"./node_modules/hammerjs/hammer.min.js"
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true,
Expand Down Expand Up @@ -318,11 +321,8 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"serviceWorker": true,
"i18nMissingTranslation": "error",
"ngswConfigPath": "projects/ebleague/src/ngsw-config.json"
"serviceWorker": "projects/ebleague/src/ngsw-config.json",
"i18nMissingTranslation": "error"
},
"bg": {
"localize": [
Expand Down
44 changes: 22 additions & 22 deletions ignite-ui-cli.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"igPackageRegistry": "https://packages.infragistics.com/npm/js-licensed/",
"customTemplates": [],
"skipGit": false,
"skipAnalytic": false,
"version": "3.0.0",
"project": {
"framework": "angular",
"projectType": "igx-ts",
"theme": "infragistics",
"themePath": "$(themePath)",
"isBundle": false,
"bundleFilePath": "",
"igniteuiSource": "",
"components": [],
"sourceFiles": [],
"isShowcase": false,
"version": "",
"projectTemplate": "side-nav"
},
"build": {},
"packagesInstalled": true
}
"igPackageRegistry": "https://packages.infragistics.com/npm/js-licensed/",
"customTemplates": [],
"skipGit": false,
"skipAnalytic": false,
"version": "3.0.0",
"project": {
"framework": "angular",
"projectType": "igx-ts-legacy",
"theme": "infragistics",
"themePath": "$(themePath)",
"isBundle": false,
"bundleFilePath": "",
"igniteuiSource": "",
"components": [],
"sourceFiles": [],
"isShowcase": false,
"version": "",
"projectTemplate": "side-nav"
},
"build": {},
"packagesInstalled": true
}
Loading

0 comments on commit 96a0cda

Please sign in to comment.