cronofy-elements 1.41.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/.eslintrc.yaml CHANGED
@@ -2,41 +2,42 @@
2
2
  parser: "babel-eslint"
3
3
 
4
4
  extends:
5
- - "eslint:recommended"
6
- - "plugin:jsx-a11y/recommended"
5
+ - "eslint:recommended"
6
+ - "plugin:jsx-a11y/recommended"
7
7
 
8
8
  plugins:
9
- - import
10
- - unused-imports
11
- - jsx-a11y
12
- - react
13
- - prettier
9
+ - import
10
+ - unused-imports
11
+ - jsx-a11y
12
+ - react
13
+ - prettier
14
14
 
15
15
  parserOptions:
16
- ecmaVersion: 6
17
- sourceType: "module"
18
- ecmaFeatures:
19
- jsx: true
16
+ ecmaVersion: 6
17
+ sourceType: "module"
18
+ ecmaFeatures:
19
+ jsx: true
20
20
 
21
21
  env:
22
- browser: true
23
- node: true
24
- es6: true
22
+ browser: true
23
+ node: true
24
+ es6: true
25
+ jest: true
25
26
 
26
27
  rules:
27
- react/jsx-uses-react: "error"
28
- react/jsx-uses-vars: "error"
29
- import/imports-first: "error"
30
- import/newline-after-import: "error"
31
- import/no-dynamic-require: "off"
32
- import/no-extraneous-dependencies: "error"
33
- import/no-named-as-default: "off"
34
- import/no-unresolved: "error"
35
- import/no-webpack-loader-syntax: "error"
36
- import/prefer-default-export: "off"
37
- prettier/prettier: "error"
38
- unused-imports/no-unused-imports: "warn"
39
- no-unused-vars: "off"
40
- no-case-declarations: "off"
41
- no-prototype-builtins: "off"
42
- no-extra-boolean-cast: "off"
28
+ react/jsx-uses-react: "error"
29
+ react/jsx-uses-vars: "error"
30
+ import/imports-first: "error"
31
+ import/newline-after-import: "error"
32
+ import/no-dynamic-require: "off"
33
+ import/no-extraneous-dependencies: "error"
34
+ import/no-named-as-default: "off"
35
+ import/no-unresolved: "error"
36
+ import/no-webpack-loader-syntax: "error"
37
+ import/prefer-default-export: "off"
38
+ prettier/prettier: "error"
39
+ unused-imports/no-unused-imports: "warn"
40
+ no-unused-vars: "off"
41
+ no-case-declarations: "off"
42
+ no-prototype-builtins: "off"
43
+ no-extra-boolean-cast: "off"
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: