Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit c3c520d

Browse files
committed
refactor: stable renaming
1 parent 63e9992 commit c3c520d

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
scan-secrets:
1414
# disable secret scanning on "main" branch (because truffleHog has issues with this) and check for a fork as the source that's heading on the main branch, which would fail as well.
15-
if: github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui'
15+
if: github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ux-design-system'
1616
uses: ./.github/workflows/00-scan-secrets.yml
1717

1818
build:

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/fie/issues/new) with questions or reporting ideas and bugs, or [open pull requests](https://github.com/db-ui/fie/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-icon-exporter/issues/new) with questions or reporting ideas and bugs, or [open pull requests](https://github.com/db-ux-design-system/figma-icon-exporter/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](https://github.com/db-ui/core/blob/main/docs/conventions.adoc), 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: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "@db-ui/fie",
2+
"name": "@db-ux/fie",
33
"version": "0.0.0",
44
"description": "'fie' or 'figma icon exporter' downloads all icons from figma",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/db-ui/mono.git"
7+
"url": "https://github.com/db-ux-design-system/figma-icon-exporter.git"
88
},
99
"license": "Apache-2.0",
1010
"bin": {
11-
"@db-ui/fie": "dist/index.js"
11+
"@db-ux/fie": "dist/index.js"
1212
},
1313
"main": "index.js",
1414
"files": [
@@ -22,7 +22,7 @@
2222
"prepare": "husky",
2323
"pretest": "rimraf icons",
2424
"test": "jest --detectOpenHandles --runInBand --forceExit",
25-
"generate:icon-fonts": "npx @db-ui/gif --src ./icons --variants filled inverted --fontName db-ux --withSizes true --debug true"
25+
"generate:icon-fonts": "npx --no @db-ux/icon-font-tools --src ./icons --variants filled inverted --fontName db-ux --withSizes true --debug true"
2626
},
2727
"dependencies": {
2828
"axios": "1.7.9",
@@ -33,6 +33,7 @@
3333
"inquirer": "^12.3.3"
3434
},
3535
"devDependencies": {
36+
"@db-ux/icon-font-tools": "^1.0.0",
3637
"@types/cli-progress": "^3.11.6",
3738
"@types/fs-extra": "^11.0.4",
3839
"@types/jest": "^29.5.14",

src/figma-icon-exporter/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const action = async (_: string, options: { _optionValues: OptionsType }) => {
1111
};
1212

1313
startProgram(
14-
'@db-ui/fie - Figma Icon Exporter',
14+
'@db-ux/fie - Figma Icon Exporter',
1515
'CLI to export icons from figma file',
1616
fieOptions,
1717
action

0 commit comments

Comments
 (0)