mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* import marketplac preview for sideload * fix: improve state service (#2977) * fix: fix sideload DI * fix: update Angular * fix: cleanup * fix: fix version selection * Bump node version to fix build for Angular * misc fixes - update node to v22 - fix chroot-and-upgrade access to prune-images - don't self-migrate legacy packages - #2985 - move dataVersion to volume folder - remove "instructions.md" from s9pk - add "docsUrl" to manifest * version bump * include flavor when clicking view listing from updates tab * closes #2980 * fix: fix select button * bring back ssh keys * fix: drop 'portal' from all routes * fix: implement longtap action to select table rows * fix description for ssh page * replace instructions with docsLink and refactor marketplace preview * delete unused translations * fix patchdb diffing algorithm * continue refactor of marketplace lib show components * Booting StartOS instead of Setting up your server on init * misc fixes - closes #2990 - closes #2987 * fix build * docsUrl and clickable service headers * don't cleanup after update until new service install succeeds * update types * misc fixes * beta.35 * sdkversion, githash for sideload, correct logs for init, startos pubkey display * bring back reboot button on install * misc fixes * beta.36 * better handling of setup and init for websocket errors * reopen init and setup logs even on graceful closure * better logging, misc fixes * fix build * dont let package stats hang * dont show docsurl in marketplace if no docsurl * re-add needs-config * show error if init fails, shorten hover state on header icons * fix operator precedemce --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: Alex Inkin <alexander@inkin.ru> Co-authored-by: Mariusz Kogen <k0gen@pm.me>
414 lines
12 KiB
JSON
414 lines
12 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/build:application",
|
|
"options": {
|
|
"preserveSymlinks": true,
|
|
"outputPath": {
|
|
"base": "dist/raw/ui",
|
|
"browser": ""
|
|
},
|
|
"index": "projects/ui/src/index.html",
|
|
"browser": "projects/ui/src/main.ts",
|
|
"polyfills": ["zone.js", "projects/ui/src/polyfills.ts"],
|
|
"tsConfig": "projects/ui/tsconfig.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
{
|
|
"glob": "**/*",
|
|
"input": "projects/shared/assets",
|
|
"output": "assets"
|
|
},
|
|
{
|
|
"glob": "**/*.wasm",
|
|
"input": "node_modules/@start9labs/argon2",
|
|
"output": "assets"
|
|
},
|
|
{
|
|
"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"
|
|
],
|
|
"styles": [
|
|
"node_modules/@taiga-ui/core/styles/taiga-ui-theme.less",
|
|
"projects/shared/styles/taiga.scss",
|
|
"projects/shared/styles/shared.scss",
|
|
"projects/ui/src/styles.scss"
|
|
],
|
|
"scripts": [],
|
|
"loader": {
|
|
".md": "text"
|
|
},
|
|
"serviceWorker": "projects/ui/ngsw-config.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"serviceWorker": "projects/ui/ngsw-config.json",
|
|
"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",
|
|
"extractLicenses": false
|
|
},
|
|
"development": {
|
|
"optimization": false,
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"namedChunks": true
|
|
},
|
|
"ci": {
|
|
"progress": false
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular/build:dev-server",
|
|
"configurations": {
|
|
"production": {
|
|
"buildTarget": "ui:build:production"
|
|
},
|
|
"development": {
|
|
"buildTarget": "ui:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development",
|
|
"options": {
|
|
"port": 8100
|
|
}
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular/build:extract-i18n",
|
|
"options": {
|
|
"buildTarget": "ui:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"projects/ui/src/**/*.ts",
|
|
"projects/ui/src/**/*.html"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"install-wizard": {
|
|
"projectType": "application",
|
|
"schematics": {},
|
|
"root": "projects/install-wizard",
|
|
"sourceRoot": "projects/install-wizard/src",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular/build:application",
|
|
"options": {
|
|
"outputPath": {
|
|
"base": "dist/raw/install-wizard",
|
|
"browser": ""
|
|
},
|
|
"index": "projects/install-wizard/src/index.html",
|
|
"browser": "projects/install-wizard/src/main.ts",
|
|
"polyfills": ["zone.js"],
|
|
"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"
|
|
],
|
|
"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,
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "2mb",
|
|
"maximumError": "5mb"
|
|
}
|
|
]
|
|
},
|
|
"ci": {
|
|
"progress": false
|
|
},
|
|
"development": {
|
|
"optimization": false,
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"namedChunks": true
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular/build:dev-server",
|
|
"options": {
|
|
"buildTarget": "install-wizard:build",
|
|
"port": 8100
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"buildTarget": "install-wizard:build:production"
|
|
},
|
|
"development": {
|
|
"buildTarget": "install-wizard:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular/build:extract-i18n",
|
|
"options": {
|
|
"buildTarget": "install-wizard:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"projects/install-wizard/src/**/*.ts",
|
|
"projects/install-wizard/src/**/*.html"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"setup-wizard": {
|
|
"projectType": "application",
|
|
"schematics": {},
|
|
"root": "projects/setup-wizard",
|
|
"sourceRoot": "projects/setup-wizard/src",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular/build:application",
|
|
"options": {
|
|
"outputPath": {
|
|
"base": "dist/raw/setup-wizard",
|
|
"browser": ""
|
|
},
|
|
"index": "projects/setup-wizard/src/index.html",
|
|
"browser": "projects/setup-wizard/src/main.ts",
|
|
"polyfills": ["zone.js"],
|
|
"tsConfig": "projects/setup-wizard/tsconfig.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
{
|
|
"glob": "**/*",
|
|
"input": "projects/shared/assets",
|
|
"output": "assets"
|
|
},
|
|
{
|
|
"glob": "**/*.wasm",
|
|
"input": "node_modules/@start9labs/argon2",
|
|
"output": "assets"
|
|
},
|
|
{
|
|
"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/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": {
|
|
"optimization": false,
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"namedChunks": true
|
|
},
|
|
"ci": {
|
|
"progress": false
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular/build:dev-server",
|
|
"configurations": {
|
|
"production": {
|
|
"buildTarget": "setup-wizard:build:production"
|
|
},
|
|
"development": {
|
|
"buildTarget": "setup-wizard:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development",
|
|
"options": {
|
|
"port": 8100
|
|
}
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular/build:extract-i18n",
|
|
"options": {
|
|
"buildTarget": "setup-wizard:build"
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"projects/setup-wizard/src/**/*.ts",
|
|
"projects/setup-wizard/src/**/*.html"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"marketplace": {
|
|
"projectType": "library",
|
|
"root": "projects/marketplace",
|
|
"sourceRoot": "projects/marketplace/src",
|
|
"prefix": "lib",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular/build: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/build:ng-packagr",
|
|
"options": {
|
|
"project": "projects/shared/ng-package.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"tsConfig": "tsconfig.lib.json"
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"cli": {
|
|
"schematicCollections": [],
|
|
"analytics": false
|
|
},
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"displayBlock": true,
|
|
"changeDetection": "OnPush",
|
|
"style": "scss",
|
|
"skipTests": true,
|
|
"skipImport": true,
|
|
"type": "component"
|
|
},
|
|
"@schematics/angular:directive": {
|
|
"type": "directive"
|
|
},
|
|
"@schematics/angular:service": {
|
|
"type": "service"
|
|
},
|
|
"@schematics/angular:guard": {
|
|
"typeSeparator": "."
|
|
},
|
|
"@schematics/angular:interceptor": {
|
|
"typeSeparator": "."
|
|
},
|
|
"@schematics/angular:module": {
|
|
"typeSeparator": "."
|
|
},
|
|
"@schematics/angular:pipe": {
|
|
"typeSeparator": "."
|
|
},
|
|
"@schematics/angular:resolver": {
|
|
"typeSeparator": "."
|
|
}
|
|
}
|
|
}
|