cronofy-elements 1.43.0 → 1.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Makefile CHANGED
@@ -3,7 +3,7 @@ default: install dev
3
3
 
4
4
  .PHONY: install
5
5
  install:
6
- npm install
6
+ yarn install
7
7
 
8
8
  .PHONY: init
9
9
  init: install
@@ -39,7 +39,7 @@ rebuild: clean build
39
39
 
40
40
  .PHONY: ci
41
41
  ci: clean
42
- npm ci
42
+ yarn install --frozen-lockfile
43
43
  npm run test
44
44
 
45
45
  .PHONY: test
@@ -70,24 +70,18 @@ build_dev:
70
70
 
71
71
  .PHONY: bump_version
72
72
  bump_patch:
73
- npm version patch
73
+ yarn version --patch --no-git-tag-version
74
74
  npm run build
75
- git add .
76
- git commit -m'version bump'
77
75
 
78
76
  .PHONY: bump_minor
79
77
  bump_minor:
80
- npm version minor
78
+ yarn version --minor --no-git-tag-version
81
79
  npm run build
82
- git add .
83
- git commit -m'version bump'
84
80
 
85
81
  .PHONY: bump_major
86
- bump_major:
87
- npm version major
82
+ bump_major: build
83
+ yarn version --major --no-git-tag-version
88
84
  npm run build
89
- git add .
90
- git commit -m'version bump'
91
85
 
92
86
  .PHONY: i18n-export
93
87
  i18n-export: