-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakefile
More file actions
36 lines (25 loc) · 493 Bytes
/
Copy pathmakefile
File metadata and controls
36 lines (25 loc) · 493 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#* ----- Test -----
# Test makefile active
default:
echo "Web Blog Developer"
#* ----- Developer -----
# Install --dev dependencies
run-install-dev:
npm install --save-dev
git config advice.ignoredHook false
chmod +x .husky/pre-commit .husky/commit-msg
# Install dependencies
run-install:
npm install
# Run Dev
run-dev:
npm run dev
# Run all Source
run-all:
make run-install-dev
make run-install
make run-dev
#* ----- Production -----
# Run build
run-build:
npm run build