mirror of
https://github.com/strapi/strapi.git
synced 2025-08-05 07:16:02 +00:00
15 lines
145 B
Makefile
Executable File
15 lines
145 B
Makefile
Executable File
MAKEFLAGS = -j1
|
|
|
|
export NODE_ENV = test
|
|
|
|
.PHONY: test
|
|
|
|
lint:
|
|
./node_modules/.bin/xo
|
|
|
|
test: lint
|
|
./scripts/test.sh
|
|
|
|
docs:
|
|
mkdocs build --clean
|