2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-19 16:59:02 +00:00

Add symlinks after installing packages

This commit is contained in:
Vjacheslav Trushkin 2022-01-28 12:45:39 +02:00
parent ed53add80d
commit db27b4eeae

View File

@ -20,6 +20,7 @@ const actionFunctions: Record<string, () => void> = {
install: () => {
runAction('Installing dependencies', (workspace) => {
runNPMCommand(workspace, ['install']);
addLinksToWorkspace(workspace);
});
},
};