mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-19 12:57:17 +00:00

- update Theia to `1.39.0`, - remove the application packager and fix the security vulnerabilities, - bundle the backed application with `webpack`, and - enhance the developer docs. Co-authored-by: Akos Kitta <a.kitta@arduino.cc> Co-authored-by: per1234 <accounts@perglass.com> Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
13 lines
308 B
Bash
Executable File
13 lines
308 B
Bash
Executable File
#!/bin/bash -i
|
|
|
|
set -e
|
|
|
|
yarn install --immutable \
|
|
&& yarn --cwd arduino-ide-extension build \
|
|
&& yarn test \
|
|
&& yarn --cwd arduino-ide-extension test:slow \
|
|
&& yarn --cwd arduino-ide-extension lint \
|
|
&& yarn --cwd electron-app rebuild \
|
|
&& yarn --cwd electron-app build \
|
|
&& yarn --cwd electron-app package
|