@megafon/ui-icons 0.0.2-beta.3 → 0.1.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/CHANGELOG.md +54 -0
- package/package.json +12 -7
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,60 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [0.1.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.6...@megafon/ui-icons@0.1.0) (2021-11-30)
|
7
|
+
|
8
|
+
|
9
|
+
### Features
|
10
|
+
|
11
|
+
* rename prefix mfui-beta to mfui ([41b2ea4](https://github.com/MegafonWebLab/megafon-ui/commit/41b2ea4880ee6dd0e76b862bfc0d2a86031d734c))
|
12
|
+
|
13
|
+
|
14
|
+
### BREAKING CHANGES
|
15
|
+
|
16
|
+
* 1.x.x version of ui library also has mfui- prefix for components. please, check,
|
17
|
+
that you don't have any styles or business logic (e.g. css or js selectors) using mfui- prefix as
|
18
|
+
match pattern.
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
## [0.0.2-beta.6](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.5...@megafon/ui-icons@0.0.2-beta.6) (2021-11-15)
|
25
|
+
|
26
|
+
|
27
|
+
### Bug Fixes
|
28
|
+
|
29
|
+
* **ui-icons:** enable some eslint rules and fix problems ([36e0ed6](https://github.com/MegafonWebLab/megafon-ui/commit/36e0ed64876eecc770bf1272ebc87607603ea3fc))
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
## [0.0.2-beta.5](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.4...@megafon/ui-icons@0.0.2-beta.5) (2021-10-07)
|
36
|
+
|
37
|
+
|
38
|
+
### Bug Fixes
|
39
|
+
|
40
|
+
* add lint-staged to pre-commit hook ([83e2e13](https://github.com/MegafonWebLab/megafon-ui/commit/83e2e1304c92cd0125e80fa0c2879e28476499d9))
|
41
|
+
* run lint-staged only on pre-commit hook ([8570564](https://github.com/MegafonWebLab/megafon-ui/commit/857056423e738135f6d0866df8c0166ce9bd289e))
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
## [0.0.2-beta.4](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.3...@megafon/ui-icons@0.0.2-beta.4) (2021-10-04)
|
48
|
+
|
49
|
+
|
50
|
+
### Bug Fixes
|
51
|
+
|
52
|
+
* **ui-icons:** add frontend-presets; fix eslint and prettier errors ([c1e0675](https://github.com/MegafonWebLab/megafon-ui/commit/c1e06758c2b6002a3011d7e98a745f1f25186714))
|
53
|
+
* **ui-icons:** remove tslint comment ([21dde20](https://github.com/MegafonWebLab/megafon-ui/commit/21dde2044dc74e1ae7f949acf1d7df751377f0aa))
|
54
|
+
* **ui-icons:** remove tslint; disable eslint rule import/no-unresolved ([c6c33af](https://github.com/MegafonWebLab/megafon-ui/commit/c6c33af4b64cf01e433dd77446d3e537c9bd2e0d))
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
6
60
|
## [0.0.2-beta.3](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.2...@megafon/ui-icons@0.0.2-beta.3) (2021-09-27)
|
7
61
|
|
8
62
|
**Note:** Version bump only for package @megafon/ui-icons
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@megafon/ui-icons",
|
3
|
-
"version": "0.0
|
3
|
+
"version": "0.1.0",
|
4
4
|
"files": [
|
5
5
|
"*.svg"
|
6
6
|
],
|
@@ -13,15 +13,22 @@
|
|
13
13
|
"scripts": {
|
14
14
|
"build": "gulp build",
|
15
15
|
"typecheck": "tsc --noEmit -p .",
|
16
|
+
"prettier:check": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx}\"",
|
17
|
+
"prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
|
16
18
|
"lint": "yarn lint:ts && yarn lint:less",
|
17
|
-
"lint:
|
18
|
-
"lint:
|
19
|
+
"lint:ts": "eslint --ext .js,.jsx,.ts,.tsx src --max-warnings=0",
|
20
|
+
"lint:less": "stylelint --syntax less src/**/*.less src/**/**/*.less"
|
19
21
|
},
|
20
22
|
"publishConfig": {
|
21
23
|
"access": "public"
|
22
24
|
},
|
25
|
+
"lint-staged": {
|
26
|
+
"src/**/**/*.(js|jsx|ts|tsx)": [
|
27
|
+
"eslint --max-warnings=0 --config ../../.eslintrc.json"
|
28
|
+
]
|
29
|
+
},
|
23
30
|
"devDependencies": {
|
24
|
-
"@megafon/ui-helpers": "^1.0.0
|
31
|
+
"@megafon/ui-helpers": "^1.0.0",
|
25
32
|
"@types/node": "^13.9.1",
|
26
33
|
"@types/react": "^16.9.23",
|
27
34
|
"@types/react-dom": "^16.9.5",
|
@@ -31,9 +38,7 @@
|
|
31
38
|
"gulp-svgmin": "^2.2.0",
|
32
39
|
"stylelint": "^9.10.1",
|
33
40
|
"through2": "^2.0.5",
|
34
|
-
"tslint": "^5.20.1",
|
35
|
-
"tslint-react": "^3.6.0",
|
36
41
|
"typescript": "^3.8.3"
|
37
42
|
},
|
38
|
-
"gitHead": "
|
43
|
+
"gitHead": "7f552b59c6bfc912d14a39c4564995685c18d4f5"
|
39
44
|
}
|