@webitel/ui-chats 0.1.35 → 0.1.36
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/README.md +10 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
# @webitel/ui-chats
|
|
2
2
|
|
|
3
|
-
Reusable Webitel Frontend Code for Chats UI
|
|
3
|
+
Reusable Webitel Frontend Code for Chats UI
|
|
4
|
+
|
|
5
|
+
## Build steps
|
|
6
|
+
|
|
7
|
+
1. `npm ci` - install dependencies
|
|
8
|
+
2. `npm version patch --git-tag-version false` - bump version
|
|
9
|
+
3. `npm run lint:fix || true` - fix lint errors
|
|
10
|
+
4. `(npm run build:types || true)` - build types
|
|
11
|
+
5. `npm run lint:package` - lint package
|
|
12
|
+
6. `npm run utils:publish` - publish library
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-chats",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"description": "Reusable Webitel Frontend Code for Chats UI",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
"../../",
|
|
@@ -9,16 +9,15 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"dev": "vite",
|
|
12
|
-
"make-all": "npm version patch --git-tag-version false && (npm run lint:biome || true) && (npm run build:types || true) && npm run utils:publish",
|
|
13
|
-
"build": "(npm run build:types || true)",
|
|
14
12
|
"build:types": "vue-tsc -p ./tsconfig.build.json",
|
|
13
|
+
"lint:fix": "npx biome check --write ./src",
|
|
15
14
|
"biome:ci:gh": "biome ci ./src --reporter=github",
|
|
16
15
|
"test:unit": "node -e \"process.exit(0)\"",
|
|
17
16
|
"lint": "biome ci ./src",
|
|
18
17
|
"test": "npm run test:unit",
|
|
19
18
|
"ci:check": "npm run biome:ci:gh && npm run test:unit",
|
|
20
|
-
"lint:
|
|
21
|
-
"utils:publish": "npm publish --access public
|
|
19
|
+
"lint:package": "publint",
|
|
20
|
+
"utils:publish": "npm publish --access public"
|
|
22
21
|
},
|
|
23
22
|
"dependencies": {
|
|
24
23
|
"autolinker": "^4.1.5",
|
|
@@ -33,6 +32,7 @@
|
|
|
33
32
|
"typescript": "~5.9.3",
|
|
34
33
|
"vite": "npm:rolldown-vite@7.2.2",
|
|
35
34
|
"vue": "^3.5",
|
|
35
|
+
"publint": "^0.3.18",
|
|
36
36
|
"vue-tsc": "^3.1.3"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
],
|
|
70
70
|
"repository": {
|
|
71
71
|
"type": "git",
|
|
72
|
-
"url": "github.com/webitel/webitel-ui-sdk"
|
|
72
|
+
"url": "https://github.com/webitel/webitel-ui-sdk"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
75
|
"npm": ">=10",
|