summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranoy <anoymouserver+github@mailbox.org>2023-11-04 21:36:30 +0100
committeranoy <anoymouserver+github@mailbox.org>2023-11-04 21:36:56 +0100
commit9c100f2f9398013083caa618b1df92c9c0602080 (patch)
treea4636e0a9a7538a64cbb36b845fe0068454349ce
parented595a666d7b72275048dd3ce7f0967c4c1569d8 (diff)
fix merge errorsfix-merge-errors
- js build was run twice - engines were defined twice Signed-off-by: anoy <anoymouserver+github@mailbox.org>
-rw-r--r--Makefile3
-rw-r--r--package.json4
2 files changed, 1 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index e4f10f421..c59e3b9ea 100644
--- a/Makefile
+++ b/Makefile
@@ -83,9 +83,8 @@ endif
# Installs npm dependencies
.PHONY: npm
npm:
- $(npm) ci
- $(npm) run build
ifneq (, $(npm))
+ $(npm) ci
$(npm) run build
else
@echo "npm command not available, please install nodejs first"
diff --git a/package.json b/package.json
index 352cc50b8..27c51e5a4 100644
--- a/package.json
+++ b/package.json
@@ -60,10 +60,6 @@
"browserslist": [
"extends @nextcloud/browserslist-config"
],
- "engines": {
- "node": "^16.0.0",
- "npm": "^7.0.0 || ^8.0.0"
- },
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",