mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-02 13:03:22 +00:00
The two package.json structure is no longer needed. https://www.electron.build/tutorials/two-package-structure Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
10 lines
137 B
Bash
Executable File
10 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
echo "Removing node_modules"
|
|
rm -rf node_modules
|
|
|
|
echo "node_modules removed reinstalling npm packages"
|
|
npm i
|