@diplodoc/client 1.1.0 → 1.2.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/.github/workflows/quality.yaml +22 -0
- package/.github/workflows/release.yaml +19 -0
- package/.github/workflows/tests.yaml +22 -0
- package/.prettierrc +1 -0
- package/CHANGELOG.md +53 -0
- package/build/app.client.css +63 -33
- package/build/app.client.css.map +1 -1
- package/build/app.client.js +1 -1
- package/build/app.client.js.LICENSE.txt +19 -10
- package/build/app.client.js.map +1 -1
- package/build/app.server.js +1 -1
- package/build/app.server.js.LICENSE.txt +19 -10
- package/build/app.server.js.map +1 -1
- package/build/index.d.ts +1 -1
- package/package.json +10 -19
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Code quality
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
node-version: [18.x]
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v3
|
|
16
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
17
|
+
uses: actions/setup-node@v3
|
|
18
|
+
with:
|
|
19
|
+
node-version: ${{ matrix.node-version }}
|
|
20
|
+
cache: "npm"
|
|
21
|
+
- run: npm ci
|
|
22
|
+
- run: npm run lint
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
on:
|
|
2
|
+
push:
|
|
3
|
+
branches: [master]
|
|
4
|
+
|
|
5
|
+
name: release
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: write
|
|
9
|
+
pull-requests: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
release:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: yandex-cloud/ui-release-action@main
|
|
16
|
+
with:
|
|
17
|
+
github-token: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}
|
|
18
|
+
npm-token: ${{ secrets.ROBOT_DATAUI_NPM_TOKEN }}
|
|
19
|
+
node-version: 18
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Unit tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
node-version: [18.x]
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v3
|
|
16
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
17
|
+
uses: actions/setup-node@v3
|
|
18
|
+
with:
|
|
19
|
+
node-version: ${{ matrix.node-version }}
|
|
20
|
+
cache: "npm"
|
|
21
|
+
- run: npm ci
|
|
22
|
+
- run: npm run test
|
package/.prettierrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"@diplodoc/prettier-config"
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [1.2.0](https://github.com/diplodoc-platform/client/compare/v1.1.0...v1.2.0) (2023-12-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* move to diplodoc configs ([7af5282](https://github.com/diplodoc-platform/client/commit/7af5282d2b00abeab22c95d0d2eb6cd16e58ff17))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* bump transformer version ([ebe2490](https://github.com/diplodoc-platform/client/commit/ebe249066dff4fa3020f40dfbbd7b1ad159bbcb7))
|
|
14
|
+
* Downgrade markdown-it peer dep ([57e8c31](https://github.com/diplodoc-platform/client/commit/57e8c3151fba4f3c6deba63d4445433015a309b0))
|
|
15
|
+
* Export more types ([6a4a84a](https://github.com/diplodoc-platform/client/commit/6a4a84a3be77f4ce0f7aab1cd2b4b4a3d7778beb))
|
|
16
|
+
* Get transform version with tabs styles ([e6d5bbc](https://github.com/diplodoc-platform/client/commit/e6d5bbcf87af2f5edd5d8a86c6c686561c2c7134))
|
|
17
|
+
* Improove build ([8377377](https://github.com/diplodoc-platform/client/commit/83773774df1aef40e2e04583d8082f20516ae08e))
|
|
18
|
+
* **infra:** engines, overrides, bump deps ([a44be1d](https://github.com/diplodoc-platform/client/commit/a44be1d18829354846e002d3d845437c8d71b9f1))
|
|
19
|
+
* Optimize build size ([d88189d](https://github.com/diplodoc-platform/client/commit/d88189d7a15535d168193d7070dfa04279ef907f))
|
|
20
|
+
* package.json main module ([bc1f2fb](https://github.com/diplodoc-platform/client/commit/bc1f2fb1b5b4d152d4e4c04b67f3d1edb000943f))
|
|
21
|
+
* Update @diplodoc/components ([2ad5500](https://github.com/diplodoc-platform/client/commit/2ad5500402d215eda60b4e66d9c37a2faf56be66))
|
|
22
|
+
* Update core deps ([16f9a10](https://github.com/diplodoc-platform/client/commit/16f9a1095db9100490d76abe5c2dac644a1c8316))
|
|
23
|
+
* Use working doc-tools/transform version ([883c4d2](https://github.com/diplodoc-platform/client/commit/883c4d225fb228c051dbe8455170a6a5cda53ceb))
|
|
24
|
+
|
|
25
|
+
## [1.1.0](https://github.com/diplodoc-platform/client/compare/v1.0.2...v1.1.0) (2023-12-18)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* move to diplodoc configs ([7af5282](https://github.com/diplodoc-platform/client/commit/7af5282d2b00abeab22c95d0d2eb6cd16e58ff17))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* bump transformer version ([ebe2490](https://github.com/diplodoc-platform/client/commit/ebe249066dff4fa3020f40dfbbd7b1ad159bbcb7))
|
|
36
|
+
* Downgrade markdown-it peer dep ([57e8c31](https://github.com/diplodoc-platform/client/commit/57e8c3151fba4f3c6deba63d4445433015a309b0))
|
|
37
|
+
* Export more types ([6a4a84a](https://github.com/diplodoc-platform/client/commit/6a4a84a3be77f4ce0f7aab1cd2b4b4a3d7778beb))
|
|
38
|
+
* Get transform version with tabs styles ([e6d5bbc](https://github.com/diplodoc-platform/client/commit/e6d5bbcf87af2f5edd5d8a86c6c686561c2c7134))
|
|
39
|
+
* Improove build ([8377377](https://github.com/diplodoc-platform/client/commit/83773774df1aef40e2e04583d8082f20516ae08e))
|
|
40
|
+
* **infra:** engines, overrides, bump deps ([a44be1d](https://github.com/diplodoc-platform/client/commit/a44be1d18829354846e002d3d845437c8d71b9f1))
|
|
41
|
+
* Optimize build size ([d88189d](https://github.com/diplodoc-platform/client/commit/d88189d7a15535d168193d7070dfa04279ef907f))
|
|
42
|
+
* package.json main module ([bc1f2fb](https://github.com/diplodoc-platform/client/commit/bc1f2fb1b5b4d152d4e4c04b67f3d1edb000943f))
|
|
43
|
+
* Update @diplodoc/components ([2ad5500](https://github.com/diplodoc-platform/client/commit/2ad5500402d215eda60b4e66d9c37a2faf56be66))
|
|
44
|
+
* Update core deps ([16f9a10](https://github.com/diplodoc-platform/client/commit/16f9a1095db9100490d76abe5c2dac644a1c8316))
|
|
45
|
+
* Use working doc-tools/transform version ([883c4d2](https://github.com/diplodoc-platform/client/commit/883c4d225fb228c051dbe8455170a6a5cda53ceb))
|
|
46
|
+
|
|
47
|
+
## [1.0.2](https://github.com/diplodoc-platform/client/compare/v1.0.1...v1.0.2) (2023-12-18)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
* **infra:** engines, overrides, bump deps ([a44be1d](https://github.com/diplodoc-platform/client/commit/a44be1d18829354846e002d3d845437c8d71b9f1))
|
|
53
|
+
* Update core deps ([16f9a10](https://github.com/diplodoc-platform/client/commit/16f9a1095db9100490d76abe5c2dac644a1c8316))
|