mirror of
https://github.com/strapi/strapi.git
synced 2025-08-17 13:16:08 +00:00
18 lines
185 B
Makefile
Executable File
18 lines
185 B
Makefile
Executable File
MAKEFLAGS = -j1
|
|
|
|
export NODE_ENV = test
|
|
|
|
.PHONY: test
|
|
|
|
lint:
|
|
./node_modules/.bin/eslint **/*.js
|
|
|
|
test: lint
|
|
./scripts/test.sh
|
|
|
|
docs:
|
|
mkdocs build --clean
|
|
|
|
setup:
|
|
./scripts/setup.sh
|