forked from layer5io/sistent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (23 loc) · 647 Bytes
/
Makefile
File metadata and controls
32 lines (23 loc) · 647 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
.PHONY: setup build format-check format-fix
## Install Sistent dependencies your local machine.
package-setup:
npm install
## Build Sistent components and packages on your local machine.
package-build: setup
npm run build
package-build-watch: setup
npm run build:watch
package-format-check:
npm run format:check
package-format-fix:
npm run format:write
.PHONY: version-patch version-minor version-major
# Create a patch version of packages
version-patch:
npm run versionup:patch
# Create a minor version of packages
version-minor:
npm run versionup:minor
# Create a major versio of packages
version-major:
npm run versionup:major