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

refactor: capitalization rules #3591

Merged
merged 7 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 docs/migration/v0.2.x-to-v0.3.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ We refactored our colors which might add some breaking changes to current projec

## Automate migration via CLI

We provide a cli tool to auto migrate your source code. Use this command in your repository:
We provide a CLI tool to auto migrate your source code. Use this command in your repository:

```shell
npx @db-ui/[email protected] migration --src=./src
Expand Down
2 changes: 1 addition & 1 deletion docs/migration/v0.3.x-to-v0.4.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ We refactored our icons which might add some breaking changes to current project

## Automate migration via CLI

We provide a cli tool to auto migrate your source code. Use this command in your repository:
We provide a CLI tool to auto migrate your source code. Use this command in your repository:

```shell
npx @db-ui/[email protected] migration --type=icon --src=./src
Expand Down
2 changes: 1 addition & 1 deletion docs/migration/v0.5.x-to-v0.6.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ We changed some properties for components to align with Figma properties:

## Automate migration via CLI

We provide a cli tool to auto migrate your source code (except for `content` to `text` attribute on `Accordion-Item`). Use this command in your repository:
We provide a CLI tool to auto migrate your source code (except for `content` to `text` attribute on `Accordion-Item`). Use this command in your repository:

```shell
npx @db-ui/migration --type=v005_v006 --src=./src
Expand Down
2 changes: 1 addition & 1 deletion scripts/rebuild-e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { spawnSync } from 'node:child_process';

/**
* Simple script to run docker-compose with the correct playwright version
* Need this script because npm under windows uses cmd which is unable to use variables in a cli like $version
* Need this script because npm under windows uses cmd which is unable to use variables in a CLI like $version
*/

const rebuildE2e = () => {
Expand Down
Loading