Skip to content

Commit

Permalink
WIP brightness & cct rework
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Jul 5, 2024
1 parent 70e2efc commit 4fb60dc
Show file tree
Hide file tree
Showing 79 changed files with 11,816 additions and 20,873 deletions.
28 changes: 17 additions & 11 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,26 @@
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
"style": "scss",
"standalone": false
}
},
"root": "",
"sourceRoot": "src-ui",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular/build:application",
"options": {
"outputPath": "dist/oyasumivr",
"outputHashing": "media",
"outputPath": {
"base": "dist/oyasumivr",
"browser": ""
},
"index": "src-ui/index.html",
"main": "src-ui/main.ts",
"polyfills": "src-ui/polyfills.ts",
"polyfills": [
"src-ui/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -44,7 +50,8 @@
],
"stylePreprocessorOptions": {
"includePaths": [
"src-ui/styles"
"src-ui/styles",
"."
]
},
"allowedCommonJsDependencies": [
Expand All @@ -54,7 +61,8 @@
"cookie",
"set-cookie-parser",
"typescript-debounce-decorator"
]
],
"browser": "src-ui/main.ts"
},
"configurations": {
"production": {
Expand All @@ -68,9 +76,7 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand All @@ -79,7 +85,7 @@
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"builder": "@angular/build:dev-server",
"configurations": {
"production": {
"buildTarget": "oyasumivr:build:production"
Expand All @@ -91,7 +97,7 @@
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"builder": "@angular/build:extract-i18n",
"options": {
"buildTarget": "oyasumivr:build"
}
Expand Down
Loading

0 comments on commit 4fb60dc

Please sign in to comment.