-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (32 loc) · 825 Bytes
/
Makefile
File metadata and controls
42 lines (32 loc) · 825 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
42
publish:
git checkout master
make check-project-before-publishing
npm version ${VER}
git push
npm publish
publish-without-checks:
git checkout master
npm version ${VER}
git push
npm publish
check-project-not-committed-changes:
/bin/bash ./ci-scripts/check-project-not-committed-changes.sh
check-project-npm-outdated:
/bin/bash ./ci-scripts/check-project-npm-outdated.sh
check-project-before-commit cbc:
make check-by-eslint
make check-project-npm-outdated
make check-by-snyk
check-project-before-publishing cbp:
make check-project-before-commit
make check-project-not-committed-changes
compile-typescript:
npm run compile-ts
compile-typescript-watch:
npm run compile-ts-watch
check-by-eslint:
npm run check-by-eslint
check-by-snyk:
snyk test
print-current-version pcv:
npm list | grep 'common'