dependencies: Use one package.json structure.

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>
This commit is contained in:
Anders Kaseorg
2020-03-02 20:45:50 -08:00
parent 067cbf32a1
commit e9536f247b
10 changed files with 1255 additions and 1710 deletions

View File

@@ -2,9 +2,8 @@
set -e
set -x
echo "Removing node_modules and app/node_modules"
echo "Removing node_modules"
rm -rf node_modules
rm -rf app/node_modules
echo "node_modules removed reinstalling npm packages"
npm i

View File

@@ -1,8 +1,7 @@
@echo off
echo "Removing node_modules and app/node_modules"
echo "Removing node_modules"
rmdir /s /q node_modules
rmdir /s /q app/node_modules
echo "node_modules removed reinstalling npm packages"
npm i