mirror of
https://github.com/Bismuth-Forge/bismuth.git
synced 2024-11-04 13:37:43 +03:00
14 lines
269 B
Bash
Executable File
14 lines
269 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# SPDX-FileCopyrightText: 2021 Mikhail Zolotukhin <mail@genda.life>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
set -e
|
|
|
|
# Remove build directory and package-lock
|
|
rm -vrf "${npm_package_config_build_dir:=build}"
|
|
rm -vf package-lock.json
|
|
rm -vrf node_modules/
|
|
|