mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* wip * update marketplace categories styling * update logo icons * add sort pipe * update search component styling * clean up categories component * cleanup and remove unnecessary sort pipe * query packages in selected category * fix search styling * add reg icon and font, adjust category styles * fix build from rebasing integration/refactors * adjust marketplace types for icon with store data, plus formatting * formatting * update categories and search * hover styling for categories * category styling * refactor for category as a behavior subject * more category styling * base functionality with new marketplace components * styling cleanup * misc style fixes and fix category selection from package page * fixes from review feedback * add and style additional details * implement release notes modal * fix menu when on service show page mobile to display change marketplace * style and responsiveness fixes * rename header to sidebar * input icon config to sidebar * add mime type pipe and type fn * review feedback fixes * skeleton text, more abstraction * reorder categories, clean up a little * audit sidebar, categories, store-icon, marketplace-sidebar, search * finish code cleanup and fix few bugs * misc fixes and cleanup * fix broken styles and markdown * bump shared marketplace version * more cleanup * sync package lock * rename sidebar component to menu * wip preview sidebar * sync package lock * breakout package show elements into components * link to brochure in preview; custom taiga button styles * move marketplace preview component into ui; open preview when viewing service in marketplace * sync changes post file struture rename * further cleanup * create service for sidebar toggle and cleanup marketplace components * bump shared marketplace version * bump shared for new images needed for brochure marketplace * cleanup --------- Co-authored-by: Matt Hill <mattnine@protonmail.com>
471 lines
15 KiB
JSON
471 lines
15 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "projects",
|
|
"projects": {
|
|
"ui": {
|
|
"projectType": "application",
|
|
"schematics": {},
|
|
"root": "projects/ui",
|
|
"sourceRoot": "projects/ui/src",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
"options": {
|
|
"preserveSymlinks": true,
|
|
"outputPath": "dist/raw/ui",
|
|
"index": "projects/ui/src/index.html",
|
|
"main": "projects/ui/src/main.ts",
|
|
"polyfills": "projects/ui/src/polyfills.ts",
|
|
"tsConfig": "projects/ui/tsconfig.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
{
|
|
"glob": "**/*",
|
|
"input": "projects/shared/assets",
|
|
"output": "assets"
|
|
},
|
|
{
|
|
"glob": "**/*.svg",
|
|
"input": "node_modules/ionicons/dist/svg",
|
|
"output": "./svg"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "node_modules/monaco-editor",
|
|
"output": "assets/monaco-editor/"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "node_modules/@taiga-ui/icons/src",
|
|
"output": "assets/taiga-ui/icons"
|
|
},
|
|
"projects/ui/src/manifest.webmanifest",
|
|
{
|
|
"glob": "ngsw.json",
|
|
"input": "dist/raw/ui",
|
|
"output": "projects/ui/src"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "node_modules/@taiga-ui/icons/src",
|
|
"output": "assets/taiga-ui/icons"
|
|
}
|
|
],
|
|
"styles": [
|
|
"node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
|
|
"node_modules/@taiga-ui/styles/taiga-ui-global.less",
|
|
"projects/shared/styles/taiga.scss",
|
|
"projects/shared/styles/variables.scss",
|
|
"projects/shared/styles/global.scss",
|
|
"projects/shared/styles/shared.scss",
|
|
"projects/ui/src/styles.scss"
|
|
],
|
|
"scripts": [],
|
|
"ngswConfigPath": "projects/ui/ngsw-config.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"serviceWorker": true,
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
}
|
|
],
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "projects/ui/src/environments/environment.ts",
|
|
"with": "projects/ui/src/environments/environment.prod.ts"
|
|
}
|
|
],
|
|
"outputHashing": "all"
|
|
},
|
|
"development": {
|
|
"buildOptimizer": false,
|
|
"optimization": false,
|
|
"vendorChunk": true,
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"namedChunks": true
|
|
},
|
|
"ci": {
|
|
"progress": false
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "ui:build:production"
|
|
},
|
|
"development": {
|
|
"browserTarget": "ui:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {
|
|
"browserTarget": "ui:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"projects/ui/src/**/*.ts",
|
|
"projects/ui/src/**/*.html"
|
|
]
|
|
}
|
|
},
|
|
"ionic-cordova-build": {
|
|
"builder": "@ionic/angular-toolkit:cordova-build",
|
|
"options": {
|
|
"browserTarget": "ui:build"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "ui:build:production"
|
|
}
|
|
}
|
|
},
|
|
"ionic-cordova-serve": {
|
|
"builder": "@ionic/angular-toolkit:cordova-serve",
|
|
"options": {
|
|
"cordovaBuildTarget": "ui:ionic-cordova-build",
|
|
"devServerTarget": "ui:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"cordovaBuildTarget": "ui:ionic-cordova-build:production",
|
|
"devServerTarget": "ui:serve:production"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"install-wizard": {
|
|
"projectType": "application",
|
|
"schematics": {},
|
|
"root": "projects/install-wizard",
|
|
"sourceRoot": "projects/install-wizard/src",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
"options": {
|
|
"outputPath": "dist/raw/install-wizard",
|
|
"index": "projects/install-wizard/src/index.html",
|
|
"main": "projects/install-wizard/src/main.ts",
|
|
"polyfills": "projects/install-wizard/src/polyfills.ts",
|
|
"tsConfig": "projects/install-wizard/tsconfig.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
{
|
|
"glob": "**/*",
|
|
"input": "projects/shared/assets",
|
|
"output": "assets"
|
|
},
|
|
{
|
|
"glob": "**/*.svg",
|
|
"input": "node_modules/ionicons/dist/ionicons/svg",
|
|
"output": "./svg"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "node_modules/@taiga-ui/icons/src",
|
|
"output": "assets/taiga-ui/icons"
|
|
}
|
|
],
|
|
"styles": [
|
|
"node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
|
|
"projects/shared/styles/taiga.scss",
|
|
"projects/shared/styles/variables.scss",
|
|
"projects/shared/styles/global.scss",
|
|
"projects/shared/styles/shared.scss",
|
|
"projects/install-wizard/src/styles.scss"
|
|
],
|
|
"scripts": []
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "projects/install-wizard/src/environments/environment.ts",
|
|
"with": "projects/install-wizard/src/environments/environment.prod.ts"
|
|
}
|
|
],
|
|
"optimization": true,
|
|
"outputHashing": "all",
|
|
"sourceMap": false,
|
|
"namedChunks": false,
|
|
"aot": true,
|
|
"extractLicenses": true,
|
|
"vendorChunk": false,
|
|
"buildOptimizer": true,
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
}
|
|
]
|
|
},
|
|
"ci": {
|
|
"progress": false
|
|
},
|
|
"development": {
|
|
"buildOptimizer": false,
|
|
"optimization": false,
|
|
"vendorChunk": true,
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"namedChunks": true
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
"options": {
|
|
"browserTarget": "install-wizard:build"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "install-wizard:build:production"
|
|
},
|
|
"development": {
|
|
"browserTarget": "install-wizard:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {
|
|
"browserTarget": "install-wizard:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"projects/install-wizard/src/**/*.ts",
|
|
"projects/install-wizard/src/**/*.html"
|
|
]
|
|
}
|
|
},
|
|
"ionic-cordova-build": {
|
|
"builder": "@ionic/angular-toolkit:cordova-build",
|
|
"options": {
|
|
"browserTarget": "install-wizard:build"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "install-wizard:build:production"
|
|
}
|
|
}
|
|
},
|
|
"ionic-cordova-serve": {
|
|
"builder": "@ionic/angular-toolkit:cordova-serve",
|
|
"options": {
|
|
"cordovaBuildTarget": "install-wizard:ionic-cordova-build",
|
|
"devServerTarget": "install-wizard:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"cordovaBuildTarget": "install-wizard:ionic-cordova-build:production",
|
|
"devServerTarget": "install-wizard:serve:production"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"setup-wizard": {
|
|
"projectType": "application",
|
|
"schematics": {},
|
|
"root": "projects/setup-wizard",
|
|
"sourceRoot": "projects/setup-wizard/src",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
"options": {
|
|
"outputPath": "dist/raw/setup-wizard",
|
|
"index": "projects/setup-wizard/src/index.html",
|
|
"main": "projects/setup-wizard/src/main.ts",
|
|
"polyfills": "projects/setup-wizard/src/polyfills.ts",
|
|
"tsConfig": "projects/setup-wizard/tsconfig.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
{
|
|
"glob": "**/*",
|
|
"input": "projects/shared/assets",
|
|
"output": "assets"
|
|
},
|
|
{
|
|
"glob": "**/*.svg",
|
|
"input": "node_modules/ionicons/dist/ionicons/svg",
|
|
"output": "./svg"
|
|
},
|
|
{
|
|
"glob": "**/*",
|
|
"input": "node_modules/@taiga-ui/icons/src",
|
|
"output": "assets/taiga-ui/icons"
|
|
}
|
|
],
|
|
"styles": [
|
|
"node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
|
|
"projects/shared/styles/taiga.scss",
|
|
"projects/shared/styles/variables.scss",
|
|
"projects/shared/styles/global.scss",
|
|
"projects/shared/styles/shared.scss",
|
|
"projects/setup-wizard/src/styles.scss"
|
|
],
|
|
"scripts": []
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
}
|
|
],
|
|
"fileReplacements": [
|
|
{
|
|
"replace": "projects/setup-wizard/src/environments/environment.ts",
|
|
"with": "projects/setup-wizard/src/environments/environment.prod.ts"
|
|
}
|
|
],
|
|
"outputHashing": "all"
|
|
},
|
|
"development": {
|
|
"buildOptimizer": false,
|
|
"optimization": false,
|
|
"vendorChunk": true,
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"namedChunks": true
|
|
},
|
|
"ci": {
|
|
"progress": false
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "setup-wizard:build:production"
|
|
},
|
|
"development": {
|
|
"browserTarget": "setup-wizard:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {
|
|
"browserTarget": "setup-wizard:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"projects/setup-wizard/src/**/*.ts",
|
|
"projects/setup-wizard/src/**/*.html"
|
|
]
|
|
}
|
|
},
|
|
"ionic-cordova-build": {
|
|
"builder": "@ionic/angular-toolkit:cordova-build",
|
|
"options": {
|
|
"browserTarget": "setup-wizard:build"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "setup-wizard:build:production"
|
|
}
|
|
}
|
|
},
|
|
"ionic-cordova-serve": {
|
|
"builder": "@ionic/angular-toolkit:cordova-serve",
|
|
"options": {
|
|
"cordovaBuildTarget": "setup-wizard:ionic-cordova-build",
|
|
"devServerTarget": "setup-wizard:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"cordovaBuildTarget": "setup-wizard:ionic-cordova-build:production",
|
|
"devServerTarget": "setup-wizard:serve:production"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"marketplace": {
|
|
"projectType": "library",
|
|
"root": "projects/marketplace",
|
|
"sourceRoot": "projects/marketplace/src",
|
|
"prefix": "lib",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
"options": {
|
|
"project": "projects/marketplace/ng-package.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"tsConfig": "tsconfig.lib.json"
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
}
|
|
}
|
|
},
|
|
"shared": {
|
|
"projectType": "library",
|
|
"root": "projects/shared",
|
|
"sourceRoot": "projects/shared/src",
|
|
"prefix": "lib",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
"options": {
|
|
"project": "projects/shared/ng-package.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"tsConfig": "tsconfig.lib.json"
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"cli": {
|
|
"schematicCollections": ["@ionic/angular-toolkit"],
|
|
"analytics": false
|
|
},
|
|
"schematics": {
|
|
"@ionic/angular-toolkit:component": {
|
|
"styleext": "scss"
|
|
},
|
|
"@ionic/angular-toolkit:page": {
|
|
"styleext": "scss"
|
|
}
|
|
}
|
|
}
|