mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* install wizard project * reboot endpoint * Update frontend/projects/install-wizard/src/app/pages/home/home.page.ts Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> * Update frontend/projects/install-wizard/src/app/pages/home/home.page.ts Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> * Update frontend/projects/install-wizard/src/app/pages/home/home.page.ts Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> * update build * fix build * backend portion * increase image size * loaded * dont auto resize * fix install wizard * use localhost if still in setup mode * fix compat Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> Co-authored-by: Aiden McClelland <me@drbonez.dev>
11 lines
476 B
JavaScript
11 lines
476 B
JavaScript
module.exports = {
|
|
'**/*.{js,ts,html,md,json}': 'prettier --write',
|
|
'*.ts': 'tslint --fix',
|
|
'projects/ui/**/*.ts': () => 'npm run check:ui',
|
|
'projects/shared/**/*.ts': () => 'npm run check:shared',
|
|
'projects/marketplace/**/*.ts': () => 'npm run check:marketplace',
|
|
'projects/diagnostic-ui/**/*.ts': () => 'npm run check:dui',
|
|
'projects/install-wizard/**/*.ts': () => 'npm run check:install-wiz',
|
|
'projects/setup-wizard/**/*.ts': () => 'npm run check:setup',
|
|
}
|