@proteinjs/user-ui 1.0.13 → 1.0.14
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.js +1 -1
- package/.prettierignore +2 -1
- package/CHANGELOG.md +8 -2
- package/package.json +3 -3
package/.eslintrc.js
CHANGED
|
@@ -3,7 +3,7 @@ module.exports = {
|
|
|
3
3
|
parser: '@typescript-eslint/parser',
|
|
4
4
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
5
5
|
root: true,
|
|
6
|
-
ignorePatterns: ['**/dist/*', '**/node_modules/*'],
|
|
6
|
+
ignorePatterns: ['**/dist/*', '**/node_modules/*', '*.md'],
|
|
7
7
|
|
|
8
8
|
rules: {
|
|
9
9
|
'prettier/prettier': ['warn'],
|
package/.prettierignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,16 +3,22 @@
|
|
|
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
|
-
## [1.0.
|
|
6
|
+
## [1.0.14](https://github.com/proteinjs/user/compare/@proteinjs/user-ui@1.0.13...@proteinjs/user-ui@1.0.14) (2024-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* add
|
|
11
|
+
* add .md file type to lint ignore files ([372c51f](https://github.com/proteinjs/user/commit/372c51fdc0a48c8559321862e3b7cebe05e4955d))
|
|
12
|
+
|
|
13
|
+
|
|
12
14
|
|
|
13
15
|
|
|
14
16
|
|
|
17
|
+
## [1.0.13](https://github.com/proteinjs/user/compare/@proteinjs/user-ui@1.0.12...@proteinjs/user-ui@1.0.13) (2024-05-10)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
15
20
|
|
|
21
|
+
- add linting and lint all files ([71defcd](https://github.com/proteinjs/user/commit/71defcd78dc479d2eef1f624c746c879f4e31daa))
|
|
16
22
|
|
|
17
23
|
## [1.0.11](https://github.com/proteinjs/user/compare/@proteinjs/user-ui@1.0.10...@proteinjs/user-ui@1.0.11) (2024-05-09)
|
|
18
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proteinjs/user-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "User ui components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@proteinjs/reflection": "1.1.1",
|
|
25
25
|
"@proteinjs/server-api": "1.1.1",
|
|
26
26
|
"@proteinjs/ui": "2.0.2",
|
|
27
|
-
"@proteinjs/user": "^1.0.
|
|
27
|
+
"@proteinjs/user": "^1.0.14",
|
|
28
28
|
"moment": "2.29.4",
|
|
29
29
|
"react": "18.2.0",
|
|
30
30
|
"react-dom": "18.2.0"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
},
|
|
44
44
|
"main": "./dist/generated/index.js",
|
|
45
45
|
"types": "./dist/generated/index.d.ts",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "64f1b34c95269d295ba43797c42c43d1c44433ea"
|
|
47
47
|
}
|