We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4680b7 commit fa2949aCopy full SHA for fa2949a
pio-scripts/build_ui.py
@@ -10,12 +10,12 @@
10
else:
11
# Install the necessary node packages for the pre-build asset bundling script
12
print('\x1b[6;33;42m' + 'Installing node packages' + '\x1b[0m')
13
- env.Execute("npm install")
+ env.Execute("npm ci")
14
15
# Call the bundling script
16
exitCode = env.Execute("npm run build")
17
18
# If it failed, abort the build
19
if (exitCode):
20
print('\x1b[0;31;43m' + 'npm run build fails check https://kno.wled.ge/advanced/compiling-wled/' + '\x1b[0m')
21
- exit(exitCode)
+ exit(exitCode)
0 commit comments