@webitel/ui-datalist 1.1.27 → 1.1.28
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 +9 -0
- package/package.json +1 -2
package/Readme.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
High level package. Contains neccessary tools for building datalists in Webitel frontend projects.
|
|
4
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
|
|
13
|
+
|
|
5
14
|
## Deps:
|
|
6
15
|
|
|
7
16
|
* `@webitel/ui-sdk`
|
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-datalist",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.28",
|
|
4
4
|
"description": "Toolkit for building data lists in webitel ui system",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"make-all": "npm version patch --git-tag-version false && ( npm run lint:fix || true) && (npm run build:types || true) && npm run lint:package && npm run utils:publish",
|
|
7
6
|
"build:types": "vue-tsc -p ./tsconfig.build.json",
|
|
8
7
|
"lint:fix": "npx biome check --write ./src",
|
|
9
8
|
"biome:ci:gh": "biome ci ./src --reporter=github",
|