diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 5acb14b..863b935 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -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: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a8edb9e..240af5c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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! @@ -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. diff --git a/package-lock.json b/package-lock.json index 4f861cd..b2d2f93 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@db-ui/fie", + "name": "@db-ux/fie", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@db-ui/fie", + "name": "@db-ux/fie", "version": "0.0.0", "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index e99f0a4..3896276 100644 --- a/package.json +++ b/package.json @@ -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": [ @@ -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", @@ -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", diff --git a/src/figma-icon-exporter/cli.ts b/src/figma-icon-exporter/cli.ts index 258402a..afc860c 100644 --- a/src/figma-icon-exporter/cli.ts +++ b/src/figma-icon-exporter/cli.ts @@ -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