Skip to content

Commit f652902

Browse files
mfranzkenmerget
andauthored
refactor: stable renaming (#128)
* refactor: stable renaming * Apply suggestions from code review * chore: update dependencies --------- Co-authored-by: Nicolas Merget <[email protected]> Co-authored-by: Nicolas Merget <[email protected]>
1 parent 26a772c commit f652902

File tree

23 files changed

+159
-60
lines changed

23 files changed

+159
-60
lines changed

.env.template

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# It will force the user to add an e-mail for this project, before committing.
2+
3+
4+
# Public encryption
5+
ASSET_INIT_VECTOR=9f512b458b9113370d584aaa18362591
6+
ASSET_PASSWORD=m4p05ux5

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ dist
33
.idea
44
/packages/**/index.html
55
/packages/**/index.js
6+
.env

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Thanks for your interest in our project. Contributions are welcome. Feel free to [open an issue](https://github.com/db-ui/figma-hub/issues/new) with questions or reporting ideas and bugs, or [open pull requests](https://github.com/db-ui/figma-hub/compare) to contribute code.
3+
Thanks for your interest in our project. Contributions are welcome. Feel free to [open an issue](https://github.com/db-ux-design-system/figma-hub/issues/new) with questions or reporting ideas and bugs, or [open pull requests](https://github.com/db-ux-design-system/figma-hub/compare) to contribute code.
44

55
We are committed to fostering a welcoming, respectful, and harassment-free environment. Be kind!
66

@@ -12,4 +12,4 @@ Moreover, you need to duplicate `.env.template` as `.env` and type your own emai
1212

1313
### Conventions
1414

15-
Please be aware that we have some [code and git commit (message and branch naming) conventions](docs/conventions.md), that we ensure with some linting tools.
15+
Please be aware that we have some [code and git commit (message and branch naming) conventions](https://github.com/db-ux-design-system/core-web/blob/main/docs/conventions.md), that we ensure with some linting tools.

package-lock.json

Lines changed: 127 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/auto-sync/ui/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"lint": "eslint ."
1010
},
1111
"dependencies": {
12-
"@db-ui/react-components": "^0.6.2",
12+
"@db-ux/react-core-components": "1.0.0",
13+
"@db-ux/db-theme": "1.0.1",
1314
"highlight.js": "^11.11.1",
1415
"react": "^19.0.0",
1516
"react-dom": "^18.3.1",

packages/auto-sync/ui/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
33
import App from "./App.tsx";
4-
import "@db-ui/components/build/styles/db-ui-42-rollup.css";
4+
import "@db-ux/core-components/build/styles/rollup.css";
55

66
createRoot(document.getElementById("root")!).render(
77
<StrictMode>

packages/auto-sync/ui/tailwind.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Config } from "tailwindcss";
22
import { CustomThemeConfig } from "tailwindcss/types/config";
33
// @ts-ignore
4-
import tokens from "@db-ui/foundations/build/tailwind/tailwind-tokens.json";
4+
import tokens from "@db-ux/core-foundations/build/tailwind/tailwind-tokens.json";
55
const customThemeConfig: CustomThemeConfig = tokens as any;
66

77
export default {

packages/design-migration/ui/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"lint": "eslint ."
1010
},
1111
"dependencies": {
12-
"@db-ui/react-components": "^0.6.2",
12+
"@db-ux/react-core-components": "1.0.0",
13+
"@db-ux/db-theme": "1.0.1",
1314
"highlight.js": "^11.11.1",
1415
"react": "^19.0.0",
1516
"react-dom": "^18.3.1",

packages/design-migration/ui/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DBBrand, DBHeader, DBPage, DBSection } from "@db-ui/react-components";
1+
import { DBBrand, DBHeader, DBPage, DBSection } from "@db-ux/react-core-components";
22
import Migration from "./pages/migration";
33
import "./index.css";
44

packages/design-migration/ui/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { StrictMode } from "react";
22
import { createRoot } from "react-dom/client";
33
import App from "./App.tsx";
4-
import "@db-ui/components/build/styles/db-ui-42-rollup.css";
4+
import "@db-ux/core-components/build/styles/rollup.css";
55

66
createRoot(document.getElementById("root")!).render(
77
<StrictMode>

0 commit comments

Comments
 (0)