Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.36.0 #557

Merged
merged 17 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
c127b56
build(deps-dev): bump style-loader from 3.3.2 to 3.3.3
dependabot[bot] Jun 8, 2023
df59b5c
build(deps-dev): bump webpack-cli from 5.0.1 to 5.1.4
dependabot[bot] Jun 8, 2023
96b8c2d
feat(vk): automated figma updates
SevereCloud Jun 16, 2023
f6c02bc
build(deps): bump actions/upload-pages-artifact from 1 to 2
dependabot[bot] Jul 11, 2023
11cc37a
build(deps): bump semver from 5.7.1 to 5.7.2
dependabot[bot] Jul 11, 2023
57a7f5b
fix(sizePopupSmall): use iPhone 14 Pro Max size
SevereCloud Jul 17, 2023
27dcfba
build(deps): bump word-wrap from 1.2.3 to 1.2.4
dependabot[bot] Jul 19, 2023
3881d14
build(deps): bump artiomtr/jest-coverage-report-action from 2 to 3
dependabot[bot] Jul 24, 2023
7ca2390
Merge pull request #529 from VKCOM/dependabot/npm_and_yarn/style-load…
Sarafa2n Jul 28, 2023
9b79aed
Merge pull request #532 from VKCOM/dependabot/npm_and_yarn/webpack-cl…
Sarafa2n Jul 28, 2023
bace038
Merge pull request #546 from VKCOM/dependabot/github_actions/actions/…
Sarafa2n Jul 28, 2023
5009a98
Merge pull request #551 from VKCOM/dependabot/npm_and_yarn/word-wrap-…
Sarafa2n Jul 28, 2023
486b166
Merge pull request #547 from VKCOM/dependabot/npm_and_yarn/semver-5.7.2
Sarafa2n Jul 28, 2023
3fb4f0d
Merge pull request #550 from VKCOM/SevereCloud/fix/sizePopupSmall/use…
Sarafa2n Jul 28, 2023
a1e9444
Merge pull request #553 from VKCOM/dependabot/github_actions/artiomtr…
Sarafa2n Jul 28, 2023
55586f7
Merge pull request #536 from VKCOM/SevereCloud/feat/vk/automated-figm…
Sarafa2n Jul 28, 2023
f5b9c79
4.36.0
Sarafa2n Aug 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
node-version: 18
cache: 'yarn'
- uses: artiomtr/jest-coverage-report-action@v2
- uses: artiomtr/jest-coverage-report-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
annotations: coverage
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/figma.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: 'Figma updates'
on:
schedule:
- cron: '0 10 * * *' # every day at 10:00

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- run: yarn install

- name: Figma styles VK to json
uses: VKCOM/gh-actions/vkui-tokens/token-base@main
with:
token: ${{ secrets.FIGMA_TOKEN }}
file_key: ${{ secrets.FIGMA_VK_FILE_KEY }}
output_file_name: src/themeDescriptions/base/figma/vk.json

- run: yarn test -u

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }}
title: Figma updates
branch: github-actions/build/figma/token-updates
commit-message: 'build(figma): token updates'
body: Automated figma updates
labels: dependencies, figma
2 changes: 1 addition & 1 deletion .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v2
with:
path: './docs/dist'

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vkontakte/vkui-tokens",
"version": "4.35.1",
"version": "4.36.0",
"description": "Репозиторий, который содержит в себе дизайн-токены и другие инструменты объединенной дизайн-системы VKUI и Paradigm",
"license": "MIT",
"main": "utils/descriptions.js",
Expand Down Expand Up @@ -77,7 +77,7 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.1",
"style-loader": "3.3.2",
"style-loader": "3.3.3",
"terser-webpack-plugin": "5.3.9",
"ts-jest": "29.1.0",
"ts-loader": "9.4.2",
Expand All @@ -88,7 +88,7 @@
"type-fest": "3.9.0",
"typescript": "5.0.4",
"webpack": "5.77.0",
"webpack-cli": "5.0.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.13.3",
"webpack-notifier": "1.15.0"
},
Expand Down
Loading
Loading