mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-23 21:15:00 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
7 lines
235 B
TypeScript
7 lines
235 B
TypeScript
import * as execa from 'execa';
|
|
|
|
import {PATHS} from './helpers/paths';
|
|
|
|
export default (): execa.ExecaChildProcess =>
|
|
execa(`json-minify ${PATHS.tmpPathIcons} > ${PATHS.pathIcons} && rimraf ${PATHS.tmpPathIcons}`, { shell: true });
|