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

refactor: stable renaming #320

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

scan-secrets:
# 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.
if: github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui'
if: github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ux-design-system'
uses: ./.github/workflows/00-scan-secrets.yml

build:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing

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.
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.

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

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

### Conventions

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.
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.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@db-ui/fie",
"name": "@db-ux/fie",
"version": "0.0.0",
"description": "'fie' or 'figma icon exporter' downloads all icons from figma",
"repository": {
"type": "git",
"url": "https://github.com/db-ui/mono.git"
"url": "https://github.com/db-ux-design-system/figma-icon-exporter.git"
},
"license": "Apache-2.0",
"bin": {
"@db-ui/fie": "dist/index.js"
"@db-ux/fie": "dist/index.js"
},
"main": "index.js",
"files": [
Expand All @@ -22,7 +22,7 @@
"prepare": "husky",
"pretest": "rimraf icons",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"generate:icon-fonts": "npx @db-ui/gif --src ./icons --variants filled inverted --fontName db-ux --withSizes true --debug true"
"generate:icon-fonts": "npx --no @db-ux/icon-font-tools --src ./icons --variants filled inverted --fontName db-ux --withSizes true --debug true"
},
"dependencies": {
"axios": "1.7.9",
Expand All @@ -33,6 +33,7 @@
"inquirer": "^12.3.3"
},
"devDependencies": {
"@db-ux/icon-font-tools": "^1.0.0",
"@types/cli-progress": "^3.11.6",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
Expand Down
2 changes: 1 addition & 1 deletion src/figma-icon-exporter/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const action = async (_: string, options: { _optionValues: OptionsType }) => {
};

startProgram(
'@db-ui/fie - Figma Icon Exporter',
'@db-ux/fie - Figma Icon Exporter',
'CLI to export icons from figma file',
fieOptions,
action
Expand Down
Loading