summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-12-29 12:24:04 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-12-29 12:24:04 +0100
commit2136ba277253cda96a7f276ce419d2ec55a6b3c7 (patch)
tree6bd55d7dfd370d46d984a510d78cd435ab7b91f5 /README.md
parent273e95ddb2a1684a7aecd0e20459059df4773d7d (diff)
Fix dev setup errors
* Drop non-existent phpunit integration tests * Do not run php tests for a dev setup * Replace Makefile one-line commands with the simple npm command Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 12 insertions, 7 deletions
diff --git a/README.md b/README.md
index 72331e45..64471293 100644
--- a/README.md
+++ b/README.md
@@ -36,26 +36,31 @@ If you'd like to join, just go through the [issue list](https://github.com/nextc
``` bash
# set up and build for production
-make
+npm ci
+npm run build
# install dependencies
-make dev-setup
+npm ci
# build for dev and watch changes
-make watch-js
+npm run watch
# build for dev
-make build-js
+npm run dev
# build for production with minification
-make build-js-production
+npm run build
```
## Running tests
-You can use the provided Makefile to run all tests by using:
+You can run all front-end tests by using:
```
-make test
+# run tests once
+npm run test
+
+# run tests continuously after every change
+npm run test:watch
```
## :v: Code of conduct