mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* change encryption to use pubkey and only encrypt specific fields * adjust script names for convenience * remove unused fn * fix build script name * augment mocks * remove log * fix prod build * feat: backend keys * fix: Using the correct name with the public key * chore: Fix the type for the encrypted * chore: Add some tracing * remove aes-js from package lock file Co-authored-by: BluJ <mogulslayer@gmail.com>
9 lines
335 B
JavaScript
9 lines
335 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/diagnostic-ui/**/*.ts': () => 'npm run check:dui',
|
|
'projects/setup-wizard/**/*.ts': () => 'npm run check:setup',
|
|
}
|