mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 04:53:17 +00:00
9 lines
176 B
Batchfile
Executable File
9 lines
176 B
Batchfile
Executable File
@echo off
|
|
|
|
echo "Removing node_modules and app/node_modules"
|
|
rmdir /s /q node_modules
|
|
rmdir /s /q app/node_modules
|
|
|
|
echo "node_modules removed reinstalling npm packages"
|
|
npm i
|