-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
41 lines (32 loc) · 788 Bytes
/
justfile
File metadata and controls
41 lines (32 loc) · 788 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
35
36
37
38
39
40
41
default:
just --list
# Enables corepack in node
corepack-enable:
./nvm_exec.sh corepack enable
# Installs project package.json dependencies
install-deps:
./nvm_exec.sh pnpm install
# Starts Next development server
dev:
./nvm_exec.sh pnpm dev
# Builds Next application
build:
./nvm_exec.sh pnpm build
# Starts Next server for built application
start:
./nvm_exec.sh pnpm start
fix:
./nvm_exec.sh pnpm lint
./nvm_exec.sh pnpm prettier-fix
# Generate inversify bindings
ioc-generate:
./nvm_exec.sh pnpm ioc-generate
# Generate inversify bindings (watch execution)
ioc-generate-watch:
./nvm_exec.sh pnpm ioc-generate --watch
# Commit
commit:
./nvm_exec.sh pnpm commit
# Proxy comand through nvm
nvm-exec command:
./nvm_exec.sh {{command}}