diff --git a/.eslintignore b/.eslintignore index 36181c42..21db5ac7 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,4 @@ dist/**/* # not ignored folders/files -!.travis.yml +!.github diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 96596559..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,12 +0,0 @@ -const baseConfig = require('lyne-helper-eslint-config'); - -baseConfig.globals = { - __dirname: 'readonly', - module: 'readonly', - process: 'readonly', - require: 'readonly' -}; - -baseConfig.plugins = ['yaml']; - -module.exports = baseConfig; diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..35fe7ab5 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,12 @@ +{ + "root": true, + "env": { + "es2020": true, + "node": true + }, + "extends": ["eslint:recommended", "prettier"], + "parserOptions": { + "ecmaVersion": 2020 + }, + "plugins": ["yaml"] +} diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 24a3fc5a..def31a7d 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -1,6 +1,6 @@ # Security Policy -⚡ **PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, [SEE BELOW](#reporting-a-vulnerability--security-issue).** ⚡ +⚡ **PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, [SEE BELOW](#reporting-a-vulnerability--security-issue).** ⚡ ## Supported Versions @@ -10,11 +10,12 @@ Only the latest major version receives security fixes. Let’s keep things simple – -The *Lyne* team takes all security concerns in *Lyne Design System* seriously. Thank you for improving the security of *Lyne*. We appreciate your efforts, responsible disclosure your information and will make every effort to acknowledge your contributions. +The _Lyne_ team takes all security concerns in _Lyne Design System_ seriously. Thank you for improving the security of _Lyne_. We appreciate your efforts, responsible disclosure your information and will make every effort to acknowledge your contributions. -If you think you have identified a vulnerability or security related issue within *Lyne Design System*, please report it immediately to lyne-design-system@sbb.ch. If you are not sure, don’t worry. Better safe than sorry – just send an email. +If you think you have identified a vulnerability or security related issue within _Lyne Design System_, please report it immediately to lyne-design-system@sbb.ch. If you are not sure, don’t worry. Better safe than sorry – just send an email. **Please do not:** + - Open issues on GitHub related to any security concerns **publicly** - Include **anyone else** on the disclosure email diff --git a/.github/actions/download-artifacts-from-workflow/action.yml b/.github/actions/download-artifacts-from-workflow/action.yml index 40445e81..b32971c6 100644 --- a/.github/actions/download-artifacts-from-workflow/action.yml +++ b/.github/actions/download-artifacts-from-workflow/action.yml @@ -1,42 +1,42 @@ -name: "Download artifacts from another workflow" -description: "Download artifacts from another workflow" +name: 'Download artifacts from another workflow' +description: 'Download artifacts from another workflow' inputs: - artifacts: # id of input + artifacts: # id of input description: 'Comma-separated list of downloadable artifacts' required: true runs: - using: "composite" + using: 'composite' steps: - - name: 'Download artifacts' - uses: actions/github-script@v6 - with: - script: | - const fs = require('fs'); - const artifacts = '${{ inputs.artifacts }}'.trim().split(/[, ]+/); - console.log(`Attempting to download artifacts ${artifacts.join(', ')}`); - const workflowArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: context.payload.workflow_run.id, - }); - for (const artifact of artifacts) { - const matchArtifact = workflowArtifacts.data.artifacts - .find((a) => a.name == artifact); - if (matchArtifact) { - console.log(`Found artifact ${artifact}`); - const download = await github.rest.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: 'zip', - }); - const artifactPath = `${process.env.GITHUB_WORKSPACE}/${artifact}.zip`; - fs.writeFileSync(artifactPath, Buffer.from(download.data)); - console.log(`Downloaded artifact to ${artifactPath}`); - } else { - const availableArtifacts = workflowArtifacts.data.artifacts.map((a) => a.name); - console.log(`Unable to find artifact ${artifact} (Available: ${availableArtifacts.join(', ')})`); - } + - name: 'Download artifacts' + uses: actions/github-script@v6 + with: + script: | + const fs = require('fs'); + const artifacts = '${{ inputs.artifacts }}'.trim().split(/[, ]+/); + console.log(`Attempting to download artifacts ${artifacts.join(', ')}`); + const workflowArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: context.payload.workflow_run.id, + }); + for (const artifact of artifacts) { + const matchArtifact = workflowArtifacts.data.artifacts + .find((a) => a.name == artifact); + if (matchArtifact) { + console.log(`Found artifact ${artifact}`); + const download = await github.rest.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: 'zip', + }); + const artifactPath = `${process.env.GITHUB_WORKSPACE}/${artifact}.zip`; + fs.writeFileSync(artifactPath, Buffer.from(download.data)); + console.log(`Downloaded artifact to ${artifactPath}`); + } else { + const availableArtifacts = workflowArtifacts.data.artifacts.map((a) => a.name); + console.log(`Unable to find artifact ${artifact} (Available: ${availableArtifacts.join(', ')})`); } + } diff --git a/.github/actions/yarn-install/action.yml b/.github/actions/yarn-install/action.yml index dbf3db90..40bcb308 100644 --- a/.github/actions/yarn-install/action.yml +++ b/.github/actions/yarn-install/action.yml @@ -1,14 +1,14 @@ -name: "Installing Yarn dependencies" -description: "Installs the dependencies using Yarn" +name: 'Installing Yarn dependencies' +description: 'Installs the dependencies using Yarn' runs: - using: "composite" - steps: - - name: "Yarn: Get cache directory path" + using: 'composite' + steps: + - name: 'Yarn: Get cache directory path' id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" shell: bash - - name: "Yarn: Restore dependencies from cache" + - name: 'Yarn: Restore dependencies from cache' uses: actions/cache@v3 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -17,6 +17,6 @@ runs: # See: https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows#example-using-the-cache-action. key: ${{ runner.os }}-yarn-v1-${{hashFiles('yarn.lock')}} restore-keys: ${{ runner.os }}-yarn-v1- - - name: "Yarn: Install dependencies" + - name: 'Yarn: Install dependencies' run: yarn install --frozen-lockfile --non-interactive shell: bash diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 785e714c..bdd1ad1d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +1,10 @@ version: 2 updates: -- package-ecosystem: npm - directory: "/" - schedule: - interval: "weekly" - day: "sunday" - time: "01:00" - timezone: "Europe/Berlin" - open-pull-requests-limit: 20 + - package-ecosystem: npm + directory: '/' + schedule: + interval: 'weekly' + day: 'sunday' + time: '01:00' + timezone: 'Europe/Berlin' + open-pull-requests-limit: 20 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 544d2db9..3a9c46a3 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -9,14 +9,14 @@ # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # -name: "CodeQL" +name: 'CodeQL' on: push: - branches: [ master ] + branches: [master] pull_request: # The branches below must be a subset of the branches above - branches: [ master ] + branches: [master] schedule: - cron: '43 16 * * 2' @@ -32,40 +32,40 @@ jobs: strategy: fail-fast: false matrix: - language: [ 'javascript' ] + language: ['javascript'] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] # Learn more: # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed steps: - - name: Checkout repository - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v2 - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # queries: ./path/to/local/query, your-org/your-repo/queries@main + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # queries: ./path/to/local/query, your-org/your-repo/queries@main - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v1 + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v1 - # ℹ️ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl + # ℹ️ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl - # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language + # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language - #- run: | - # make bootstrap - # make release + #- run: | + # make bootstrap + # make release - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e45ae7d5..8478da1e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -9,32 +9,31 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 14 - - name: Yarn Install - uses: ./.github/actions/yarn-install + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 14 + - name: Yarn Install + uses: ./.github/actions/yarn-install - - name: Run eslint - run: yarn lint + - name: Run eslint + run: yarn lint build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 14 - - name: Yarn Install - uses: ./.github/actions/yarn-install - - - name: Run build - run: yarn build - - name: Store storybook artifacts - uses: actions/upload-artifact@v3 - with: - name: dist - path: dist/ + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 14 + - name: Yarn Install + uses: ./.github/actions/yarn-install + - name: Run build + run: yarn build + - name: Store storybook artifacts + uses: actions/upload-artifact@v3 + with: + name: dist + path: dist/ # TODO: Trigger lyne-documentation build (node ./ci/trigger_lyne_documentation.js) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9c2033b..7f2c6f42 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ name: Release # https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ on: workflow_run: - workflows: ["Continuous Integration"] + workflows: ['Continuous Integration'] types: [completed] branches: [master] @@ -39,7 +39,6 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Install netlify CLI run: yarn global add netlify-cli - name: Deploy CDN assets diff --git a/.husky/commit-msg b/.husky/commit-msg index ee8c7d54..db9f148c 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -3,4 +3,4 @@ . "$(dirname "$0")/_/husky.sh" -npx --no-install commitlint --edit $1 +yarn commitlint --edit $1 diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 00000000..d2ae35e8 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +yarn lint-staged diff --git a/.releaserc b/.releaserc index 2c4c5041..d6fe5b9f 100644 --- a/.releaserc +++ b/.releaserc @@ -13,7 +13,7 @@ ["@semantic-release/git", { "assets": [ "package.json", - "package-lock.json", + "yarn.lock", "CHANGELOG.md", "properties/**/*.json" ], diff --git a/CHANGELOG_LEGACY.md b/CHANGELOG_LEGACY.md index 00fdc725..bda74286 100644 --- a/CHANGELOG_LEGACY.md +++ b/CHANGELOG_LEGACY.md @@ -1,1396 +1,1204 @@ # [3.21.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.3...v3.21.0) (2022-05-25) - ### Features -* focus outline design token ([#405](https://github.com/lyne-design-system/lyne-design-tokens/issues/405)) ([fbea86e](https://github.com/lyne-design-system/lyne-design-tokens/commit/fbea86eda35288baf64ce08b5ef11254bdeeeb85)) +- focus outline design token ([#405](https://github.com/lyne-design-system/lyne-design-tokens/issues/405)) ([fbea86e](https://github.com/lyne-design-system/lyne-design-tokens/commit/fbea86eda35288baf64ce08b5ef11254bdeeeb85)) ## [3.20.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.2...v3.20.3) (2022-05-05) - ### Bug Fixes -* remove doubled animation prefix ([4c9d02e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c9d02e90aa64435508c2cc8cab6391cb5d3bc1f)) +- remove doubled animation prefix ([4c9d02e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c9d02e90aa64435508c2cc8cab6391cb5d3bc1f)) ## [3.20.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.1...v3.20.2) (2022-05-05) - ### Bug Fixes -* add ms ([7d36ffa](https://github.com/lyne-design-system/lyne-design-tokens/commit/7d36ffa078b912342246a1bcb5696e71a8b1915a)) -* fix min size of buttons and add animation duration tokens ([79d0f5f](https://github.com/lyne-design-system/lyne-design-tokens/commit/79d0f5f371956411908039157bf0e37bed3c4ffb)) +- add ms ([7d36ffa](https://github.com/lyne-design-system/lyne-design-tokens/commit/7d36ffa078b912342246a1bcb5696e71a8b1915a)) +- fix min size of buttons and add animation duration tokens ([79d0f5f](https://github.com/lyne-design-system/lyne-design-tokens/commit/79d0f5f371956411908039157bf0e37bed3c4ffb)) ## [3.20.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.0...v3.20.1) (2022-04-19) - ### Bug Fixes -* adapt form element size tokens to figma specifications ([200efc1](https://github.com/lyne-design-system/lyne-design-tokens/commit/200efc1bb9cc1aeeebda01cbe7ccc3f98acc5ba5)) +- adapt form element size tokens to figma specifications ([200efc1](https://github.com/lyne-design-system/lyne-design-tokens/commit/200efc1bb9cc1aeeebda01cbe7ccc3f98acc5ba5)) # [3.20.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.19.0...v3.20.0) (2022-03-29) - ### Features -* restructure layout design tokens ([62a3853](https://github.com/lyne-design-system/lyne-design-tokens/commit/62a3853f0a4ef9c7e3d3f2d4ca5039c44c1c6f01)) +- restructure layout design tokens ([62a3853](https://github.com/lyne-design-system/lyne-design-tokens/commit/62a3853f0a4ef9c7e3d3f2d4ca5039c44c1c6f01)) # [3.19.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.18.0...v3.19.0) (2022-03-28) - ### Features -* rename token category names ([322569d](https://github.com/lyne-design-system/lyne-design-tokens/commit/322569d25bebc6036791cbe5b2823f35b34694ff)) +- rename token category names ([322569d](https://github.com/lyne-design-system/lyne-design-tokens/commit/322569d25bebc6036791cbe5b2823f35b34694ff)) # [3.18.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.17.1...v3.18.0) (2022-03-28) - ### Bug Fixes -* typo ([ee1e458](https://github.com/lyne-design-system/lyne-design-tokens/commit/ee1e45844f07569503e3a74d44a2cfdcd82d9e47)) - +- typo ([ee1e458](https://github.com/lyne-design-system/lyne-design-tokens/commit/ee1e45844f07569503e3a74d44a2cfdcd82d9e47)) ### Features -* layout design tokens ([abbd2e6](https://github.com/lyne-design-system/lyne-design-tokens/commit/abbd2e6bab81607e6b46274dd4a312f3187f9516)) +- layout design tokens ([abbd2e6](https://github.com/lyne-design-system/lyne-design-tokens/commit/abbd2e6bab81607e6b46274dd4a312f3187f9516)) ## [3.17.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.17.0...v3.17.1) (2022-01-24) - ### Bug Fixes -* resolving merge conflict ([7016915](https://github.com/lyne-design-system/lyne-design-tokens/commit/7016915f80f1df71ed8e9ff3ebaaa95964ef1db0)) +- resolving merge conflict ([7016915](https://github.com/lyne-design-system/lyne-design-tokens/commit/7016915f80f1df71ed8e9ff3ebaaa95964ef1db0)) # [3.17.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.16.0...v3.17.0) (2021-11-15) - ### Features -* add fixed spacing 30x ([b60b4fc](https://github.com/lyne-design-system/lyne-design-tokens/commit/b60b4fcb014dbbf7bac227465e4a945b75b2dfef)) -* fixed spacings ([e57ac15](https://github.com/lyne-design-system/lyne-design-tokens/commit/e57ac1519e3e52edba35b2513a22a29a909817f1)) -* responsive spacing ([3cb74ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3cb74eec9ba7c2250284e292f71dc47659b3253d)) +- add fixed spacing 30x ([b60b4fc](https://github.com/lyne-design-system/lyne-design-tokens/commit/b60b4fcb014dbbf7bac227465e4a945b75b2dfef)) +- fixed spacings ([e57ac15](https://github.com/lyne-design-system/lyne-design-tokens/commit/e57ac1519e3e52edba35b2513a22a29a909817f1)) +- responsive spacing ([3cb74ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3cb74eec9ba7c2250284e292f71dc47659b3253d)) # [3.16.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.3...v3.16.0) (2021-10-06) - ### Features -* introduce new custom properties/CSS variables selector ([1f0ff75](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f0ff75d68748f811b68cc0eaae5191f15f2849e)) +- introduce new custom properties/CSS variables selector ([1f0ff75](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f0ff75d68748f811b68cc0eaae5191f15f2849e)) ## [3.15.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.2...v3.15.3) (2021-09-08) - ### Bug Fixes -* replacing single with double quotes to avoid malformed output in js ([f2be272](https://github.com/lyne-design-system/lyne-design-tokens/commit/f2be2724508a8133a24a307336609c6ec4b88b9b)) +- replacing single with double quotes to avoid malformed output in js ([f2be272](https://github.com/lyne-design-system/lyne-design-tokens/commit/f2be2724508a8133a24a307336609c6ec4b88b9b)) ## [3.15.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.1...v3.15.2) (2021-08-26) - ### Bug Fixes -* re-factoring typo design tokens to primitives ([e3a8d4c](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3a8d4c38ed1dc624806d96185b44a4e8a1f52d9)) +- re-factoring typo design tokens to primitives ([e3a8d4c](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3a8d4c38ed1dc624806d96185b44a4e8a1f52d9)) ## [3.15.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.0...v3.15.1) (2021-08-25) - ### Bug Fixes -* adding re-factored typo design token definitions ([834ef19](https://github.com/lyne-design-system/lyne-design-tokens/commit/834ef19e881249a2a6f3bf35fce421db68ad53c0)) +- adding re-factored typo design token definitions ([834ef19](https://github.com/lyne-design-system/lyne-design-tokens/commit/834ef19e881249a2a6f3bf35fce421db68ad53c0)) # [3.15.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.4...v3.15.0) (2021-08-25) - ### Features -* add border-radius-4x ([e02dc46](https://github.com/lyne-design-system/lyne-design-tokens/commit/e02dc465edba82ed44ca0fa71c7a7663a09cb7cd)) +- add border-radius-4x ([e02dc46](https://github.com/lyne-design-system/lyne-design-tokens/commit/e02dc465edba82ed44ca0fa71c7a7663a09cb7cd)) ## [3.14.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.3...v3.14.4) (2021-08-24) - ### Bug Fixes -* remove obsolete shadows ([c18b34d](https://github.com/lyne-design-system/lyne-design-tokens/commit/c18b34dac3fa5c4ecdefe8c29a2d90cc9e7f7c60)) +- remove obsolete shadows ([c18b34d](https://github.com/lyne-design-system/lyne-design-tokens/commit/c18b34dac3fa5c4ecdefe8c29a2d90cc9e7f7c60)) ## [3.14.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.2...v3.14.3) (2021-08-14) - ### Bug Fixes -* fake commit to trigger release ([30d32ff](https://github.com/lyne-design-system/lyne-design-tokens/commit/30d32ff6bcccf9e62dffc7b24fb3a8e51a2cd660)) +- fake commit to trigger release ([30d32ff](https://github.com/lyne-design-system/lyne-design-tokens/commit/30d32ff6bcccf9e62dffc7b24fb3a8e51a2cd660)) ## [3.14.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.1...v3.14.2) (2021-08-13) - ### Bug Fixes -* remove size transform ([d7a5a05](https://github.com/lyne-design-system/lyne-design-tokens/commit/d7a5a05c5619b3acf839cc826b145b39b69e720e)) +- remove size transform ([d7a5a05](https://github.com/lyne-design-system/lyne-design-tokens/commit/d7a5a05c5619b3acf839cc826b145b39b69e720e)) ## [3.14.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.0...v3.14.1) (2021-08-13) - ### Bug Fixes -* correct min height of small element ([30f68d7](https://github.com/lyne-design-system/lyne-design-tokens/commit/30f68d7096d3be687b04ce2a12971049cd8e9867)) -* fake commit to trigger release ([90ce1d1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ce1d1f40ee1a611ff1a5cc7a4471bb226c4bc7)) +- correct min height of small element ([30f68d7](https://github.com/lyne-design-system/lyne-design-tokens/commit/30f68d7096d3be687b04ce2a12971049cd8e9867)) +- fake commit to trigger release ([90ce1d1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ce1d1f40ee1a611ff1a5cc7a4471bb226c4bc7)) # [3.14.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.4...v3.14.0) (2021-08-13) - ### Bug Fixes -* delete icon size ([829e4eb](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e4ebc7bf5319c0099a7d06d5936b664bc031b)) -* remove iconSize, add animation, border and size ([febb8be](https://github.com/lyne-design-system/lyne-design-tokens/commit/febb8be87d595e48cfc0e61907322889a68ca327)) -* remove touch ([232ad93](https://github.com/lyne-design-system/lyne-design-tokens/commit/232ad93db654eaaeed1856ca950ad2a7ea5baa1b)) -* remove touch ([3814bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3814bee16ff0097f2ae096c8e1b060a8378d6f12)) -* stick to naming conventions with x ([e2cc690](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2cc690492efe69c313c161fe5168392e8ffe2dc)) - +- delete icon size ([829e4eb](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e4ebc7bf5319c0099a7d06d5936b664bc031b)) +- remove iconSize, add animation, border and size ([febb8be](https://github.com/lyne-design-system/lyne-design-tokens/commit/febb8be87d595e48cfc0e61907322889a68ca327)) +- remove touch ([232ad93](https://github.com/lyne-design-system/lyne-design-tokens/commit/232ad93db654eaaeed1856ca950ad2a7ea5baa1b)) +- remove touch ([3814bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3814bee16ff0097f2ae096c8e1b060a8378d6f12)) +- stick to naming conventions with x ([e2cc690](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2cc690492efe69c313c161fe5168392e8ffe2dc)) ### Features -* add animation tokens ([56c4592](https://github.com/lyne-design-system/lyne-design-tokens/commit/56c4592a421da149181b44352422e72c6a8419bb)) -* add border tokens ([85b6ea4](https://github.com/lyne-design-system/lyne-design-tokens/commit/85b6ea4203c9da9d934ab0c0fe6a4f5e6c3d96f7)) -* add size tokens ([7a37954](https://github.com/lyne-design-system/lyne-design-tokens/commit/7a379549c3d476a9ff461129031f5d5c655f3111)) +- add animation tokens ([56c4592](https://github.com/lyne-design-system/lyne-design-tokens/commit/56c4592a421da149181b44352422e72c6a8419bb)) +- add border tokens ([85b6ea4](https://github.com/lyne-design-system/lyne-design-tokens/commit/85b6ea4203c9da9d934ab0c0fe6a4f5e6c3d96f7)) +- add size tokens ([7a37954](https://github.com/lyne-design-system/lyne-design-tokens/commit/7a379549c3d476a9ff461129031f5d5c655f3111)) ## [3.13.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.3...v3.13.4) (2021-08-10) - ### Bug Fixes -* add attributes in correct place ([6397e3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/6397e3bd85adc2009c5904994732d0cdf5ff07d0)) +- add attributes in correct place ([6397e3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/6397e3bd85adc2009c5904994732d0cdf5ff07d0)) ## [3.13.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.2...v3.13.3) (2021-08-10) - ### Bug Fixes -* remove px to rem transform ([09af3df](https://github.com/lyne-design-system/lyne-design-tokens/commit/09af3dfa2d4cdcf8a33118f15344da015916d21e)) -* remove px to rem transformer ([b9f2d42](https://github.com/lyne-design-system/lyne-design-tokens/commit/b9f2d4278234435aac4c7ca2eb3fcb2cf3b499e6)) +- remove px to rem transform ([09af3df](https://github.com/lyne-design-system/lyne-design-tokens/commit/09af3dfa2d4cdcf8a33118f15344da015916d21e)) +- remove px to rem transformer ([b9f2d42](https://github.com/lyne-design-system/lyne-design-tokens/commit/b9f2d4278234435aac4c7ca2eb3fcb2cf3b499e6)) ## [3.13.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.1...v3.13.2) (2021-08-06) - ### Bug Fixes -* remove link from root url ([9e2badd](https://github.com/lyne-design-system/lyne-design-tokens/commit/9e2badd78c42ea5cb114b4d43a4c1ac12b73ae2d)) +- remove link from root url ([9e2badd](https://github.com/lyne-design-system/lyne-design-tokens/commit/9e2badd78c42ea5cb114b4d43a4c1ac12b73ae2d)) ## [3.13.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.0...v3.13.1) (2021-08-06) - ### Bug Fixes -* make sure to break travis in catch ([984ca77](https://github.com/lyne-design-system/lyne-design-tokens/commit/984ca773101b6a8b4ae4ed7d58c0349c4994e2e9)) -* output flat json in kebab case ([229145b](https://github.com/lyne-design-system/lyne-design-tokens/commit/229145b7da35017f3cfbf3534dcd23d80e8d84dd)) -* various issues ([e2a4034](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2a40341de2c886c6d251850c1dd14f912083899)) +- make sure to break travis in catch ([984ca77](https://github.com/lyne-design-system/lyne-design-tokens/commit/984ca773101b6a8b4ae4ed7d58c0349c4994e2e9)) +- output flat json in kebab case ([229145b](https://github.com/lyne-design-system/lyne-design-tokens/commit/229145b7da35017f3cfbf3534dcd23d80e8d84dd)) +- various issues ([e2a4034](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2a40341de2c886c6d251850c1dd14f912083899)) # [3.13.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.12.0...v3.13.0) (2021-08-05) - ### Features -* add group attribute to shadow tokens ([97705a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/97705a009a642c6243e1bdcc44959a33cca032dc)) +- add group attribute to shadow tokens ([97705a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/97705a009a642c6243e1bdcc44959a33cca032dc)) # [3.12.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.3...v3.12.0) (2021-08-05) - ### Bug Fixes -* remove redundant dash in property key ([b455b8b](https://github.com/lyne-design-system/lyne-design-tokens/commit/b455b8bc63ffaf733171367285d825a3585939bc)) - +- remove redundant dash in property key ([b455b8b](https://github.com/lyne-design-system/lyne-design-tokens/commit/b455b8bc63ffaf733171367285d825a3585939bc)) ### Features -* add custom format for raw json ([2eb6610](https://github.com/lyne-design-system/lyne-design-tokens/commit/2eb661086cfa216a310bff5116ede96da2e06bd1)) +- add custom format for raw json ([2eb6610](https://github.com/lyne-design-system/lyne-design-tokens/commit/2eb661086cfa216a310bff5116ede96da2e06bd1)) ## [3.11.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.2...v3.11.3) (2021-08-03) - ### Bug Fixes -* abstract baseFontSize from defaultFontSize ([9b5b067](https://github.com/lyne-design-system/lyne-design-tokens/commit/9b5b067315af62afb0949a0348f2a939a3c3f64d)) -* add implicitCategory to breakpoint ([6763b41](https://github.com/lyne-design-system/lyne-design-tokens/commit/6763b4142f1f72970102e103a627ea9dff302841)) -* add implicitCategory to icon-size ([07caaa3](https://github.com/lyne-design-system/lyne-design-tokens/commit/07caaa3ab1270be0a05a079fe9ae90a406d618c8)) -* add implicitCategory to shadow ([c4f20bb](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4f20bb5675c0c2c8901629677fe650858847d47)) -* add implicitCategory to spacing ([be384c1](https://github.com/lyne-design-system/lyne-design-tokens/commit/be384c16df5ab02279480a34e0ba3f45fe6c115a)) -* add implicitCategory to touch ([5bea4b4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5bea4b4fd5995f9ea14234b19ffdbf5a18c7cff7)) -* add implicitCategory to typo ([245fe24](https://github.com/lyne-design-system/lyne-design-tokens/commit/245fe24584c6c81ef48c5c75026978ba422f0db7)) -* change output name for css ([ae03414](https://github.com/lyne-design-system/lyne-design-tokens/commit/ae034142690820a6fd24f22299767a1f3b070bbc)) -* make base-spacing calculation directly inside spacings file ([462b925](https://github.com/lyne-design-system/lyne-design-tokens/commit/462b9251d63aec632995f0d640ad9cd9ed53caf8)) -* make sure that default font size does not get transformed to rem ([239db59](https://github.com/lyne-design-system/lyne-design-tokens/commit/239db59cfdff124e0bdc9f10efb83c33d58abae9)) -* remove shadow design tokens for buttons ([d66b964](https://github.com/lyne-design-system/lyne-design-tokens/commit/d66b9644104feee1b3b83e2e0481adbce1035a01)) -* remove spacings transform ([7e41855](https://github.com/lyne-design-system/lyne-design-tokens/commit/7e418552a37e54d013b9b72e336304c11477a30f)) -* remove spacings transform, add empty transform for pxToRem ([f502fea](https://github.com/lyne-design-system/lyne-design-tokens/commit/f502fea12b8c550c54c98d18e47671498b6da857)) -* set transform for pxToRem ([d282acd](https://github.com/lyne-design-system/lyne-design-tokens/commit/d282acd7b3e2fdecd96cb67060df5703308d5a94)) -* use baseFontSize ([91d52f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/91d52f49c845e9668d6c1daaaa28b78d1080d838)) +- abstract baseFontSize from defaultFontSize ([9b5b067](https://github.com/lyne-design-system/lyne-design-tokens/commit/9b5b067315af62afb0949a0348f2a939a3c3f64d)) +- add implicitCategory to breakpoint ([6763b41](https://github.com/lyne-design-system/lyne-design-tokens/commit/6763b4142f1f72970102e103a627ea9dff302841)) +- add implicitCategory to icon-size ([07caaa3](https://github.com/lyne-design-system/lyne-design-tokens/commit/07caaa3ab1270be0a05a079fe9ae90a406d618c8)) +- add implicitCategory to shadow ([c4f20bb](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4f20bb5675c0c2c8901629677fe650858847d47)) +- add implicitCategory to spacing ([be384c1](https://github.com/lyne-design-system/lyne-design-tokens/commit/be384c16df5ab02279480a34e0ba3f45fe6c115a)) +- add implicitCategory to touch ([5bea4b4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5bea4b4fd5995f9ea14234b19ffdbf5a18c7cff7)) +- add implicitCategory to typo ([245fe24](https://github.com/lyne-design-system/lyne-design-tokens/commit/245fe24584c6c81ef48c5c75026978ba422f0db7)) +- change output name for css ([ae03414](https://github.com/lyne-design-system/lyne-design-tokens/commit/ae034142690820a6fd24f22299767a1f3b070bbc)) +- make base-spacing calculation directly inside spacings file ([462b925](https://github.com/lyne-design-system/lyne-design-tokens/commit/462b9251d63aec632995f0d640ad9cd9ed53caf8)) +- make sure that default font size does not get transformed to rem ([239db59](https://github.com/lyne-design-system/lyne-design-tokens/commit/239db59cfdff124e0bdc9f10efb83c33d58abae9)) +- remove shadow design tokens for buttons ([d66b964](https://github.com/lyne-design-system/lyne-design-tokens/commit/d66b9644104feee1b3b83e2e0481adbce1035a01)) +- remove spacings transform ([7e41855](https://github.com/lyne-design-system/lyne-design-tokens/commit/7e418552a37e54d013b9b72e336304c11477a30f)) +- remove spacings transform, add empty transform for pxToRem ([f502fea](https://github.com/lyne-design-system/lyne-design-tokens/commit/f502fea12b8c550c54c98d18e47671498b6da857)) +- set transform for pxToRem ([d282acd](https://github.com/lyne-design-system/lyne-design-tokens/commit/d282acd7b3e2fdecd96cb67060df5703308d5a94)) +- use baseFontSize ([91d52f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/91d52f49c845e9668d6c1daaaa28b78d1080d838)) ## [3.11.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.1...v3.11.2) (2021-08-02) - ### Bug Fixes -* use css color transform for less and javascript targets ([da27faf](https://github.com/lyne-design-system/lyne-design-tokens/commit/da27faf0b10d16c7ab669fe73e0596bba5351e81)) +- use css color transform for less and javascript targets ([da27faf](https://github.com/lyne-design-system/lyne-design-tokens/commit/da27faf0b10d16c7ab669fe73e0596bba5351e81)) ## [3.11.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.0...v3.11.1) (2021-07-29) - ### Bug Fixes -* fake commit to trigger release ([6257820](https://github.com/lyne-design-system/lyne-design-tokens/commit/6257820902134e870bfce4b4bc35bdc8de0c5a35)) +- fake commit to trigger release ([6257820](https://github.com/lyne-design-system/lyne-design-tokens/commit/6257820902134e870bfce4b4bc35bdc8de0c5a35)) # [3.11.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.10.0...v3.11.0) (2021-07-29) - ### Bug Fixes -* add alpha colors needed for shadow design tokens ([6bd7fff](https://github.com/lyne-design-system/lyne-design-tokens/commit/6bd7fff0bdf96aaadd400acb85bfa0b90b36b0a0)) -* add default to all colors ([c60f60b](https://github.com/lyne-design-system/lyne-design-tokens/commit/c60f60b7d50e835847f3b3b76b5e3425a264f3ea)) -* use color tokens as shadow colors ([eb2b3cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb2b3cb5dc225a9c1974a7aa9dfa73a133fe2a29)) - +- add alpha colors needed for shadow design tokens ([6bd7fff](https://github.com/lyne-design-system/lyne-design-tokens/commit/6bd7fff0bdf96aaadd400acb85bfa0b90b36b0a0)) +- add default to all colors ([c60f60b](https://github.com/lyne-design-system/lyne-design-tokens/commit/c60f60b7d50e835847f3b3b76b5e3425a264f3ea)) +- use color tokens as shadow colors ([eb2b3cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb2b3cb5dc225a9c1974a7aa9dfa73a133fe2a29)) ### Features -* add button shadows ([8cf04bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/8cf04bf4d2c74c40c25992438b65dfcd36694585)) +- add button shadows ([8cf04bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/8cf04bf4d2c74c40c25992438b65dfcd36694585)) # [3.10.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.9.1...v3.10.0) (2021-07-29) - ### Features -* adding typo design tokens ([235984e](https://github.com/lyne-design-system/lyne-design-tokens/commit/235984e819033197145c2ce130aaeec61ed0bc49)) -* is adding structure for font families ([de5bad0](https://github.com/lyne-design-system/lyne-design-tokens/commit/de5bad0a2239ae679f941f5bb0e652449946f1a9)) +- adding typo design tokens ([235984e](https://github.com/lyne-design-system/lyne-design-tokens/commit/235984e819033197145c2ce130aaeec61ed0bc49)) +- is adding structure for font families ([de5bad0](https://github.com/lyne-design-system/lyne-design-tokens/commit/de5bad0a2239ae679f941f5bb0e652449946f1a9)) ## [3.9.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.9.0...v3.9.1) (2021-07-28) - ### Bug Fixes -* choosing clearer variable name ([b0ab8c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0ab8c2980eedf97fc5e50ccd0c5863374b26b18)) -* improving spacing variables output ([0056bf2](https://github.com/lyne-design-system/lyne-design-tokens/commit/0056bf2d9a601acf56d3cd85fc059699333d86f0)) +- choosing clearer variable name ([b0ab8c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0ab8c2980eedf97fc5e50ccd0c5863374b26b18)) +- improving spacing variables output ([0056bf2](https://github.com/lyne-design-system/lyne-design-tokens/commit/0056bf2d9a601acf56d3cd85fc059699333d86f0)) # [3.9.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.8.0...v3.9.0) (2021-07-28) - ### Features -* is adding breakpoint tokens ([414f2f2](https://github.com/lyne-design-system/lyne-design-tokens/commit/414f2f22012e0548c2aeb9eb440b0bb7e28b2ed9)) -* is adding minimal touch size token information ([2a0674b](https://github.com/lyne-design-system/lyne-design-tokens/commit/2a0674b9b41ce8f134159066b95ee474b541e78e)) +- is adding breakpoint tokens ([414f2f2](https://github.com/lyne-design-system/lyne-design-tokens/commit/414f2f22012e0548c2aeb9eb440b0bb7e28b2ed9)) +- is adding minimal touch size token information ([2a0674b](https://github.com/lyne-design-system/lyne-design-tokens/commit/2a0674b9b41ce8f134159066b95ee474b541e78e)) # [3.8.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.7.1...v3.8.0) (2021-07-28) - ### Features -* is adding icon-size design tokens ([f65b2ef](https://github.com/lyne-design-system/lyne-design-tokens/commit/f65b2ef11446cee48fc15644d1780841f6f52b97)) +- is adding icon-size design tokens ([f65b2ef](https://github.com/lyne-design-system/lyne-design-tokens/commit/f65b2ef11446cee48fc15644d1780841f6f52b97)) ## [3.7.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.7.0...v3.7.1) (2021-07-28) - ### Bug Fixes -* rename colors to match color names defined in figma ([b5f6b6d](https://github.com/lyne-design-system/lyne-design-tokens/commit/b5f6b6dda0d10d6e38aa53c47676e052d8ea6fa9)) +- rename colors to match color names defined in figma ([b5f6b6d](https://github.com/lyne-design-system/lyne-design-tokens/commit/b5f6b6dda0d10d6e38aa53c47676e052d8ea6fa9)) # [3.7.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.6.1...v3.7.0) (2021-07-28) - ### Features -* add design tokens for shadows ([d520d0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/d520d0f53dc68b651b9914e8b06d6289f32a2b68)) -* include design token file for shadows ([9ebaf0d](https://github.com/lyne-design-system/lyne-design-tokens/commit/9ebaf0d84623704b2b3aae11ec50c03c2bdaf3d5)) -* restructure hard/soft shadow nesting ([8de18a6](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de18a61bf6f9b0c119d890a69626262baf1aa09)) +- add design tokens for shadows ([d520d0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/d520d0f53dc68b651b9914e8b06d6289f32a2b68)) +- include design token file for shadows ([9ebaf0d](https://github.com/lyne-design-system/lyne-design-tokens/commit/9ebaf0d84623704b2b3aae11ec50c03c2bdaf3d5)) +- restructure hard/soft shadow nesting ([8de18a6](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de18a61bf6f9b0c119d890a69626262baf1aa09)) ## [3.6.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.6.0...v3.6.1) (2021-07-28) - ### Bug Fixes -* use :host selector instead of default :root ([84aed4a](https://github.com/lyne-design-system/lyne-design-tokens/commit/84aed4a042405cb6c4ce673344842be8f9327257)) +- use :host selector instead of default :root ([84aed4a](https://github.com/lyne-design-system/lyne-design-tokens/commit/84aed4a042405cb6c4ce673344842be8f9327257)) # [3.6.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.5.0...v3.6.0) (2021-07-28) - ### Features -* output css variables in scss file ([0a9249b](https://github.com/lyne-design-system/lyne-design-tokens/commit/0a9249b9f0b01065526469ab0b8af0923bcf545d)) +- output css variables in scss file ([0a9249b](https://github.com/lyne-design-system/lyne-design-tokens/commit/0a9249b9f0b01065526469ab0b8af0923bcf545d)) # [3.5.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.4.1...v3.5.0) (2021-07-27) - ### Bug Fixes -* add missing hash tag to colors ([c6136b1](https://github.com/lyne-design-system/lyne-design-tokens/commit/c6136b1a1464a38cca0e56c7a4b8c329cce1ccc2)) -* adobt new file structure ([3ebba81](https://github.com/lyne-design-system/lyne-design-tokens/commit/3ebba811d58995fd3484b6abae18ec228e07408f)) -* is taking over pr suggestions and adding additional documentation ([b8bb736](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8bb736bd0cb4d4d8f51956683eac163abd5c975)) -* remove button tokens ([18f6e2b](https://github.com/lyne-design-system/lyne-design-tokens/commit/18f6e2b1ee7256b67af946d379829937614ccf07)) -* remove chore from path, use category instead of type ([e3c0b3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3c0b3bd83e56dc932a606673edd953f864a2af9)) -* remove core folder ([dd12c26](https://github.com/lyne-design-system/lyne-design-tokens/commit/dd12c26e3433f241b19299598647ff02c514fb93)) -* remove core folder ([829e71c](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e71c83e1e0a7c97b1830f9409f2788ed210e6)) -* try to disable commit-msg hook on ci ([4cae729](https://github.com/lyne-design-system/lyne-design-tokens/commit/4cae729683cd0debfbf5db159c6ffdcd3fbca889)) -* try to skip prepare script on ci ([64117ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/64117ecb99484800542667e96c1bb390aa9cfe8a)) -* try to skip prepare script on ci ([40fab04](https://github.com/lyne-design-system/lyne-design-tokens/commit/40fab047bfd46a138fd6c88908a0bde67f4b4cc1)) - +- add missing hash tag to colors ([c6136b1](https://github.com/lyne-design-system/lyne-design-tokens/commit/c6136b1a1464a38cca0e56c7a4b8c329cce1ccc2)) +- adobt new file structure ([3ebba81](https://github.com/lyne-design-system/lyne-design-tokens/commit/3ebba811d58995fd3484b6abae18ec228e07408f)) +- is taking over pr suggestions and adding additional documentation ([b8bb736](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8bb736bd0cb4d4d8f51956683eac163abd5c975)) +- remove button tokens ([18f6e2b](https://github.com/lyne-design-system/lyne-design-tokens/commit/18f6e2b1ee7256b67af946d379829937614ccf07)) +- remove chore from path, use category instead of type ([e3c0b3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3c0b3bd83e56dc932a606673edd953f864a2af9)) +- remove core folder ([dd12c26](https://github.com/lyne-design-system/lyne-design-tokens/commit/dd12c26e3433f241b19299598647ff02c514fb93)) +- remove core folder ([829e71c](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e71c83e1e0a7c97b1830f9409f2788ed210e6)) +- try to disable commit-msg hook on ci ([4cae729](https://github.com/lyne-design-system/lyne-design-tokens/commit/4cae729683cd0debfbf5db159c6ffdcd3fbca889)) +- try to skip prepare script on ci ([64117ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/64117ecb99484800542667e96c1bb390aa9cfe8a)) +- try to skip prepare script on ci ([40fab04](https://github.com/lyne-design-system/lyne-design-tokens/commit/40fab047bfd46a138fd6c88908a0bde67f4b4cc1)) ### Features -* add colors for primary button ([b2c9b10](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c9b105812d8d20576406f15518301aa3a37eb2)) -* add core colors include color attribute ([941db15](https://github.com/lyne-design-system/lyne-design-tokens/commit/941db156c3287cadfa760ec2ef90dd9543806082)) -* add design tokens for buttons ([f855ba9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f855ba9c67ce90ce52d467d97f9e79bc9a16b7b8)) -* enable outputReferences for css-variables ([4f3867b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4f3867b4eeb3a226c70ff80be04cf86c90d59a50)) +- add colors for primary button ([b2c9b10](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c9b105812d8d20576406f15518301aa3a37eb2)) +- add core colors include color attribute ([941db15](https://github.com/lyne-design-system/lyne-design-tokens/commit/941db156c3287cadfa760ec2ef90dd9543806082)) +- add design tokens for buttons ([f855ba9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f855ba9c67ce90ce52d467d97f9e79bc9a16b7b8)) +- enable outputReferences for css-variables ([4f3867b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4f3867b4eeb3a226c70ff80be04cf86c90d59a50)) ## [3.4.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.4.0...v3.4.1) (2021-06-20) - ### Bug Fixes -* disable graviton again ([85785a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/85785a00bc43616955b6b7ba9feedcece327a2b7)) -* fail build if step fails ([3fab04a](https://github.com/lyne-design-system/lyne-design-tokens/commit/3fab04ab0e09590d3575cf16c137c655b38cf8aa)) -* move prepare git step ([68055d4](https://github.com/lyne-design-system/lyne-design-tokens/commit/68055d4bbd75d1b79ca00dc563702617b86b464a)) -* use graviton again ([0c531fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0c531fe97a437973c6b8aecb11c684d4498d09e3)) +- disable graviton again ([85785a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/85785a00bc43616955b6b7ba9feedcece327a2b7)) +- fail build if step fails ([3fab04a](https://github.com/lyne-design-system/lyne-design-tokens/commit/3fab04ab0e09590d3575cf16c137c655b38cf8aa)) +- move prepare git step ([68055d4](https://github.com/lyne-design-system/lyne-design-tokens/commit/68055d4bbd75d1b79ca00dc563702617b86b464a)) +- use graviton again ([0c531fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0c531fe97a437973c6b8aecb11c684d4498d09e3)) # [3.4.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.30...v3.4.0) (2021-06-20) - ### Bug Fixes -* diable graviton ([3e6c563](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e6c563f3623999cb236e9ebfdb38f3d786dd621)) - +- diable graviton ([3e6c563](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e6c563f3623999cb236e9ebfdb38f3d786dd621)) ### Features -* use graviton architecture ([b2c5bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c5bee14bd5a467f092b572cbe3fccc81eedb31)) +- use graviton architecture ([b2c5bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c5bee14bd5a467f092b572cbe3fccc81eedb31)) ## [3.3.30](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.29...v3.3.30) (2021-06-03) - ### Bug Fixes -* fix red color (triggered from Figma) [skip ci] ([c473eb2](https://github.com/lyne-design-system/lyne-design-tokens/commit/c473eb2d3756d26d2c98747f20666c3530fd5855)) +- fix red color (triggered from Figma) [skip ci] ([c473eb2](https://github.com/lyne-design-system/lyne-design-tokens/commit/c473eb2d3756d26d2c98747f20666c3530fd5855)) ## [3.3.29](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.28...v3.3.29) (2021-05-06) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([c8489b8](https://github.com/lyne-design-system/lyne-design-tokens/commit/c8489b87fb270b0c4fead152a13ed390aac6a608)) +- change red to green (triggered from Figma) [skip ci] ([c8489b8](https://github.com/lyne-design-system/lyne-design-tokens/commit/c8489b87fb270b0c4fead152a13ed390aac6a608)) ## [3.3.28](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.27...v3.3.28) (2021-05-06) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([f449e8f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f449e8fd296b6795161fe144e9eb7f1a00afe73d)) +- change red to green (triggered from Figma) [skip ci] ([f449e8f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f449e8fd296b6795161fe144e9eb7f1a00afe73d)) ## [3.3.27](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.26...v3.3.27) (2021-05-06) - ### Bug Fixes -* reset default red (triggered from Figma) [skip ci] ([10d532d](https://github.com/lyne-design-system/lyne-design-tokens/commit/10d532dcd6ea588137b82316f92b131cd1dd6175)) +- reset default red (triggered from Figma) [skip ci] ([10d532d](https://github.com/lyne-design-system/lyne-design-tokens/commit/10d532dcd6ea588137b82316f92b131cd1dd6175)) ## [3.3.26](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.25...v3.3.26) (2021-05-06) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([382086a](https://github.com/lyne-design-system/lyne-design-tokens/commit/382086a47650a873b533fc6cfd08761171b0df6c)) +- test color change (triggered from Figma) [skip ci] ([382086a](https://github.com/lyne-design-system/lyne-design-tokens/commit/382086a47650a873b533fc6cfd08761171b0df6c)) ## [3.3.25](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.24...v3.3.25) (2021-05-06) - ### Bug Fixes -* set correct color (triggered from Figma) [skip ci] ([4afb7e2](https://github.com/lyne-design-system/lyne-design-tokens/commit/4afb7e23fe7945fd86559816863fd57cc764a583)) +- set correct color (triggered from Figma) [skip ci] ([4afb7e2](https://github.com/lyne-design-system/lyne-design-tokens/commit/4afb7e23fe7945fd86559816863fd57cc764a583)) ## [3.3.24](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.23...v3.3.24) (2021-05-06) - ### Bug Fixes -* test change color (triggered from Figma) [skip ci] ([00baae0](https://github.com/lyne-design-system/lyne-design-tokens/commit/00baae08cf1b4b25d6dd3f08650161637903d62f)) +- test change color (triggered from Figma) [skip ci] ([00baae0](https://github.com/lyne-design-system/lyne-design-tokens/commit/00baae08cf1b4b25d6dd3f08650161637903d62f)) ## [3.3.23](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.22...v3.3.23) (2021-05-06) - ### Bug Fixes -* change color to red (triggered from Figma) [skip ci] ([a41b17a](https://github.com/lyne-design-system/lyne-design-tokens/commit/a41b17a9b1b8f987d72b9de4f41747a839d610f0)) +- change color to red (triggered from Figma) [skip ci] ([a41b17a](https://github.com/lyne-design-system/lyne-design-tokens/commit/a41b17a9b1b8f987d72b9de4f41747a839d610f0)) ## [3.3.22](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.21...v3.3.22) (2021-05-04) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([86d9262](https://github.com/lyne-design-system/lyne-design-tokens/commit/86d9262672c6c0410758afaf7311c68daf309e53)) +- test color change (triggered from Figma) [skip ci] ([86d9262](https://github.com/lyne-design-system/lyne-design-tokens/commit/86d9262672c6c0410758afaf7311c68daf309e53)) ## [3.3.21](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.20...v3.3.21) (2021-03-04) - ### Bug Fixes -* enable dependabot after demo ([46e0970](https://github.com/lyne-design-system/lyne-design-tokens/commit/46e09700e8f6dc62b6ca3504dd4676cb9b2ad1ca)) +- enable dependabot after demo ([46e0970](https://github.com/lyne-design-system/lyne-design-tokens/commit/46e09700e8f6dc62b6ca3504dd4676cb9b2ad1ca)) ## [3.3.20](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.19...v3.3.20) (2021-03-03) - ### Bug Fixes -* revert test color change (triggered from Figma) [skip ci] ([bc803f8](https://github.com/lyne-design-system/lyne-design-tokens/commit/bc803f82a23eb1aa7e8f8056c9cf63612a792748)) +- revert test color change (triggered from Figma) [skip ci] ([bc803f8](https://github.com/lyne-design-system/lyne-design-tokens/commit/bc803f82a23eb1aa7e8f8056c9cf63612a792748)) ## [3.3.19](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.18...v3.3.19) (2021-03-02) - ### Bug Fixes -* change color from red to green (triggered from Figma) [skip ci] ([7aae9d3](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aae9d392f76c4a416f8a4c2afb5ac1e61ebb8f3)) +- change color from red to green (triggered from Figma) [skip ci] ([7aae9d3](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aae9d392f76c4a416f8a4c2afb5ac1e61ebb8f3)) ## [3.3.18](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.17...v3.3.18) (2021-03-02) - ### Bug Fixes -* change green to red again (triggered from Figma) [skip ci] ([22d9027](https://github.com/lyne-design-system/lyne-design-tokens/commit/22d90270b1c9e733c3dc36c4ff508e722c9c6aac)) +- change green to red again (triggered from Figma) [skip ci] ([22d9027](https://github.com/lyne-design-system/lyne-design-tokens/commit/22d90270b1c9e733c3dc36c4ff508e722c9c6aac)) ## [3.3.17](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.16...v3.3.17) (2021-03-02) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([ef12cf8](https://github.com/lyne-design-system/lyne-design-tokens/commit/ef12cf8fbc321145312f55e2bbda8c731aab2107)) +- change red to green (triggered from Figma) [skip ci] ([ef12cf8](https://github.com/lyne-design-system/lyne-design-tokens/commit/ef12cf8fbc321145312f55e2bbda8c731aab2107)) ## [3.3.16](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.15...v3.3.16) (2021-03-02) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([d68e3cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/d68e3cfe4c3fb1a191f34b1df2c2fddac30e9cc2)) +- test color change (triggered from Figma) [skip ci] ([d68e3cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/d68e3cfe4c3fb1a191f34b1df2c2fddac30e9cc2)) ## [3.3.15](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.14...v3.3.15) (2021-03-02) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([6e61870](https://github.com/lyne-design-system/lyne-design-tokens/commit/6e61870eaa60e7ca7235bffd9a23606e27f624cc)) +- test color change (triggered from Figma) [skip ci] ([6e61870](https://github.com/lyne-design-system/lyne-design-tokens/commit/6e61870eaa60e7ca7235bffd9a23606e27f624cc)) ## [3.3.14](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.13...v3.3.14) (2021-03-02) - ### Bug Fixes -* change green to red again (triggered from Figma) [skip ci] ([6a0a9fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a0a9fb3ee4f27035b37fbce158777bfce77a4b8)) +- change green to red again (triggered from Figma) [skip ci] ([6a0a9fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a0a9fb3ee4f27035b37fbce158777bfce77a4b8)) ## [3.3.13](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.12...v3.3.13) (2021-03-02) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([84d1011](https://github.com/lyne-design-system/lyne-design-tokens/commit/84d1011d214d05ba0debd49f969f07606a191d89)) +- change red to green (triggered from Figma) [skip ci] ([84d1011](https://github.com/lyne-design-system/lyne-design-tokens/commit/84d1011d214d05ba0debd49f969f07606a191d89)) ## [3.3.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.11...v3.3.12) (2021-03-01) - ### Bug Fixes -* change green color to red (triggered from Figma) [skip ci] ([6a83409](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a83409ed3e771fc9f5300fba920ec741178fdde)) +- change green color to red (triggered from Figma) [skip ci] ([6a83409](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a83409ed3e771fc9f5300fba920ec741178fdde)) ## [3.3.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.10...v3.3.11) (2021-03-01) - ### Bug Fixes -* change color red to green (triggered from Figma) [skip ci] ([0f891ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/0f891ee454a118df2016a30e5c8c088c345da20b)) +- change color red to green (triggered from Figma) [skip ci] ([0f891ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/0f891ee454a118df2016a30e5c8c088c345da20b)) ## [3.3.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.9...v3.3.10) (2021-03-01) - ### Bug Fixes -* change green to red (triggered from Figma) [skip ci] ([fd17deb](https://github.com/lyne-design-system/lyne-design-tokens/commit/fd17debe7f93cdbd5f44d5295c9ccc1ee8c52cfb)) +- change green to red (triggered from Figma) [skip ci] ([fd17deb](https://github.com/lyne-design-system/lyne-design-tokens/commit/fd17debe7f93cdbd5f44d5295c9ccc1ee8c52cfb)) ## [3.3.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.8...v3.3.9) (2021-03-01) - ### Bug Fixes -* change color to green (triggered from Figma) [skip ci] ([e79aaae](https://github.com/lyne-design-system/lyne-design-tokens/commit/e79aaae736c27772b4044900bda110d40720bbb9)) +- change color to green (triggered from Figma) [skip ci] ([e79aaae](https://github.com/lyne-design-system/lyne-design-tokens/commit/e79aaae736c27772b4044900bda110d40720bbb9)) ## [3.3.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.7...v3.3.8) (2021-03-01) - ### Bug Fixes -* change color to red (triggered from Figma) [skip ci] ([953527d](https://github.com/lyne-design-system/lyne-design-tokens/commit/953527d40d6b95c989227bfbc66480655ebf730f)) +- change color to red (triggered from Figma) [skip ci] ([953527d](https://github.com/lyne-design-system/lyne-design-tokens/commit/953527d40d6b95c989227bfbc66480655ebf730f)) ## [3.3.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.6...v3.3.7) (2021-03-01) - ### Bug Fixes -* test color change to green (triggered from Figma) [skip ci] ([1129ffe](https://github.com/lyne-design-system/lyne-design-tokens/commit/1129ffe4a854bdd583265643929386468a8d7220)) +- test color change to green (triggered from Figma) [skip ci] ([1129ffe](https://github.com/lyne-design-system/lyne-design-tokens/commit/1129ffe4a854bdd583265643929386468a8d7220)) ## [3.3.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.5...v3.3.6) (2021-03-01) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([36754c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/36754c2851510fd65e0ee3f691a91550579be321)) +- test color change (triggered from Figma) [skip ci] ([36754c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/36754c2851510fd65e0ee3f691a91550579be321)) ## [3.3.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.4...v3.3.5) (2021-03-01) - ### Bug Fixes -* change primary button background color (triggered from Figma) [skip ci] ([8db1ebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/8db1ebedbeb9159979766ddaca10c420b105b950)) +- change primary button background color (triggered from Figma) [skip ci] ([8db1ebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/8db1ebedbeb9159979766ddaca10c420b105b950)) ## [3.3.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.3...v3.3.4) (2021-02-27) - ### Bug Fixes -* test changing color-red-regular (triggered from Figma) [skip ci] ([646ddb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/646ddb862035a424d824e2675a04e9b00ee4a32b)) +- test changing color-red-regular (triggered from Figma) [skip ci] ([646ddb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/646ddb862035a424d824e2675a04e9b00ee4a32b)) ## [3.3.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.2...v3.3.3) (2021-02-22) - ### Bug Fixes -* make ordinary component from color rect (triggered from Figma) [skip ci] ([b0a8248](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0a82483bccee2b559d7f1e5f285beed24498e46)) +- make ordinary component from color rect (triggered from Figma) [skip ci] ([b0a8248](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0a82483bccee2b559d7f1e5f285beed24498e46)) ## [3.3.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.1...v3.3.2) (2021-02-22) - ### Bug Fixes -* make ordinary component from color rect (triggered from Figma) [skip ci] ([eafa476](https://github.com/lyne-design-system/lyne-design-tokens/commit/eafa47634aed2245f5fa001d4a637abbcf964839)) +- make ordinary component from color rect (triggered from Figma) [skip ci] ([eafa476](https://github.com/lyne-design-system/lyne-design-tokens/commit/eafa47634aed2245f5fa001d4a637abbcf964839)) ## [3.3.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.0...v3.3.1) (2021-02-22) - ### Bug Fixes -* add logs before pushing properites ([f15a4f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f15a4f960bc441b41bd2dfbdf5d6856df0ce4ef9)) +- add logs before pushing properites ([f15a4f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f15a4f960bc441b41bd2dfbdf5d6856df0ce4ef9)) # [3.3.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.6...v3.3.0) (2021-02-22) - ### Features -* test workflow (triggered from Figma) [skip ci] ([92b243b](https://github.com/lyne-design-system/lyne-design-tokens/commit/92b243b356aedf0063b41cec8a0b6bf1b4fe835b)) +- test workflow (triggered from Figma) [skip ci] ([92b243b](https://github.com/lyne-design-system/lyne-design-tokens/commit/92b243b356aedf0063b41cec8a0b6bf1b4fe835b)) ## [3.2.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.5...v3.2.6) (2020-10-29) - ### Bug Fixes -* use com instead of org for travis url ([baa2582](https://github.com/lyne-design-system/lyne-design-tokens/commit/baa258252060729491244a9c237344aba8b071fd)) -* use com instead of org for travis url [skip ci] ([7fe5da5](https://github.com/lyne-design-system/lyne-design-tokens/commit/7fe5da528b50b8d2786346319b9993a0689d4d11)) +- use com instead of org for travis url ([baa2582](https://github.com/lyne-design-system/lyne-design-tokens/commit/baa258252060729491244a9c237344aba8b071fd)) +- use com instead of org for travis url [skip ci] ([7fe5da5](https://github.com/lyne-design-system/lyne-design-tokens/commit/7fe5da528b50b8d2786346319b9993a0689d4d11)) ## [3.2.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.4...v3.2.5) (2020-10-05) - ### Bug Fixes -* correct color (triggered from Figma) [skip ci] ([f1a0404](https://github.com/lyne-design-system/lyne-design-tokens/commit/f1a040493954312c7238e950a678d27d7769e924)) +- correct color (triggered from Figma) [skip ci] ([f1a0404](https://github.com/lyne-design-system/lyne-design-tokens/commit/f1a040493954312c7238e950a678d27d7769e924)) ## [3.2.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.3...v3.2.4) (2020-10-05) - ### Bug Fixes -* change accent color to green (triggered from Figma) [skip ci] ([d785289](https://github.com/lyne-design-system/lyne-design-tokens/commit/d785289472e2419dbc25e4a0118f6373d492f3c4)) +- change accent color to green (triggered from Figma) [skip ci] ([d785289](https://github.com/lyne-design-system/lyne-design-tokens/commit/d785289472e2419dbc25e4a0118f6373d492f3c4)) ## [3.2.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.2...v3.2.3) (2020-09-30) - ### Bug Fixes -* fix white color (triggered from Figma) [skip ci] ([02b11b5](https://github.com/lyne-design-system/lyne-design-tokens/commit/02b11b5e7865f5413eac37c824c3bbcb4afe6b1e)) +- fix white color (triggered from Figma) [skip ci] ([02b11b5](https://github.com/lyne-design-system/lyne-design-tokens/commit/02b11b5e7865f5413eac37c824c3bbcb4afe6b1e)) ## [3.2.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.1...v3.2.2) (2020-09-30) - ### Bug Fixes -* test change white color to gray (triggered from Figma) [skip ci] ([288d601](https://github.com/lyne-design-system/lyne-design-tokens/commit/288d6019550794f03a477fa0dc24188062e112cc)) +- test change white color to gray (triggered from Figma) [skip ci] ([288d601](https://github.com/lyne-design-system/lyne-design-tokens/commit/288d6019550794f03a477fa0dc24188062e112cc)) ## [3.2.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.0...v3.2.1) (2020-09-24) - ### Bug Fixes -* install netlify ([56861c3](https://github.com/lyne-design-system/lyne-design-tokens/commit/56861c30b54f1ce0f00208a6029ad91af14062e0)) +- install netlify ([56861c3](https://github.com/lyne-design-system/lyne-design-tokens/commit/56861c30b54f1ce0f00208a6029ad91af14062e0)) # [3.2.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.12...v3.2.0) (2020-09-24) - ### Bug Fixes -* remove rimraf ([9f68a6b](https://github.com/lyne-design-system/lyne-design-tokens/commit/9f68a6b1c4f266843788e2dfff8bb89a9f8d4828)) - +- remove rimraf ([9f68a6b](https://github.com/lyne-design-system/lyne-design-tokens/commit/9f68a6b1c4f266843788e2dfff8bb89a9f8d4828)) ### Features -* add files to generate and publish cdn ressources ([868fe5e](https://github.com/lyne-design-system/lyne-design-tokens/commit/868fe5e4aff51f73fe104ab0a9cebcaa256b57c4)) +- add files to generate and publish cdn ressources ([868fe5e](https://github.com/lyne-design-system/lyne-design-tokens/commit/868fe5e4aff51f73fe104ab0a9cebcaa256b57c4)) ## [3.1.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.11...v3.1.12) (2020-09-21) - ### Bug Fixes -* revert color to white (triggered from Figma) [skip ci] ([4a2aa39](https://github.com/lyne-design-system/lyne-design-tokens/commit/4a2aa39311853d52cc7d2386dd0fb2020146ba56)) +- revert color to white (triggered from Figma) [skip ci] ([4a2aa39](https://github.com/lyne-design-system/lyne-design-tokens/commit/4a2aa39311853d52cc7d2386dd0fb2020146ba56)) ## [3.1.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.10...v3.1.11) (2020-09-21) - ### Bug Fixes -* change (triggered from Figma) [skip ci] ([263edc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/263edc4b0048e5765ba1ca5db2e3d00ab40f2305)) +- change (triggered from Figma) [skip ci] ([263edc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/263edc4b0048e5765ba1ca5db2e3d00ab40f2305)) ## [3.1.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.9...v3.1.10) (2020-09-14) - ### Bug Fixes -* revert green to red (triggered from Figma) [skip ci] ([7aebebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aebebe659809f17e2db7a8346f4aa29966f5601)) +- revert green to red (triggered from Figma) [skip ci] ([7aebebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aebebe659809f17e2db7a8346f4aa29966f5601)) ## [3.1.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.8...v3.1.9) (2020-09-14) - ### Bug Fixes -* fake commit to test release ([2f8e04e](https://github.com/lyne-design-system/lyne-design-tokens/commit/2f8e04e63c4a706632cb5cdd3641a0d394711e1c)) +- fake commit to test release ([2f8e04e](https://github.com/lyne-design-system/lyne-design-tokens/commit/2f8e04e63c4a706632cb5cdd3641a0d394711e1c)) ## [3.1.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.7...v3.1.8) (2020-09-14) - ### Bug Fixes -* change red color to green (triggered from Figma) [skip ci] ([e5bffa5](https://github.com/lyne-design-system/lyne-design-tokens/commit/e5bffa5fe6e9a268d3cb19fbcbdcd52e3d77706d)) +- change red color to green (triggered from Figma) [skip ci] ([e5bffa5](https://github.com/lyne-design-system/lyne-design-tokens/commit/e5bffa5fe6e9a268d3cb19fbcbdcd52e3d77706d)) ## [3.1.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.6...v3.1.7) (2020-09-13) - ### Bug Fixes -* update deps ([6717833](https://github.com/lyne-design-system/lyne-design-tokens/commit/67178336d86a738a6fccfb2c5450a9bf04b6076b)) -* update travis trigger ([776651b](https://github.com/lyne-design-system/lyne-design-tokens/commit/776651be7d3b529083d53f4279015bb6a6923423)) +- update deps ([6717833](https://github.com/lyne-design-system/lyne-design-tokens/commit/67178336d86a738a6fccfb2c5450a9bf04b6076b)) +- update travis trigger ([776651b](https://github.com/lyne-design-system/lyne-design-tokens/commit/776651be7d3b529083d53f4279015bb6a6923423)) ## [3.1.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.5...v3.1.6) (2020-09-13) - ### Bug Fixes -* update figma api helper ([67e1765](https://github.com/lyne-design-system/lyne-design-tokens/commit/67e1765d53d2b47f924869a0d19b39c27c7a2994)) -* update lyne api helper ([cbc7fbf](https://github.com/lyne-design-system/lyne-design-tokens/commit/cbc7fbfb30120592e6d73e5fd973a4098c29f63f)) +- update figma api helper ([67e1765](https://github.com/lyne-design-system/lyne-design-tokens/commit/67e1765d53d2b47f924869a0d19b39c27c7a2994)) +- update lyne api helper ([cbc7fbf](https://github.com/lyne-design-system/lyne-design-tokens/commit/cbc7fbfb30120592e6d73e5fd973a4098c29f63f)) ## [3.1.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.4...v3.1.5) (2020-09-12) - ### Bug Fixes -* use figma api helper (fake fix commit to trigger release) ([ff40124](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff4012429c44e802b5037c72cb8da8f68971276b)) +- use figma api helper (fake fix commit to trigger release) ([ff40124](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff4012429c44e802b5037c72cb8da8f68971276b)) ## [3.1.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.3...v3.1.4) (2020-09-10) - ### Bug Fixes -* changed Headline 1 font-size from 64px to 40px (triggered from Figma) [skip ci] ([3e350bc](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e350bc560935a3f55205fd14d8d98356b765acc)) +- changed Headline 1 font-size from 64px to 40px (triggered from Figma) [skip ci] ([3e350bc](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e350bc560935a3f55205fd14d8d98356b765acc)) ## [3.1.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.2...v3.1.3) (2020-09-09) - ### Bug Fixes -* test pipeline (triggered from Figma) [skip ci] ([8d7bdd3](https://github.com/lyne-design-system/lyne-design-tokens/commit/8d7bdd316502ea3b2c7bb5e1ff56ab79adc05e71)) +- test pipeline (triggered from Figma) [skip ci] ([8d7bdd3](https://github.com/lyne-design-system/lyne-design-tokens/commit/8d7bdd316502ea3b2c7bb5e1ff56ab79adc05e71)) ## [3.1.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.1...v3.1.2) (2020-09-09) - ### Bug Fixes -* changed font face to SBBWeb, added border-radius frame with 4 radius variants (triggered from Figma) [skip ci] ([262ddb4](https://github.com/lyne-design-system/lyne-design-tokens/commit/262ddb414fd5853e33b48b7387dd49d838e5fdd9)) +- changed font face to SBBWeb, added border-radius frame with 4 radius variants (triggered from Figma) [skip ci] ([262ddb4](https://github.com/lyne-design-system/lyne-design-tokens/commit/262ddb414fd5853e33b48b7387dd49d838e5fdd9)) ## [3.1.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.0...v3.1.1) (2020-09-09) - ### Bug Fixes -* update helper trigger travis ([622efb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/622efb89f13b6dd3c0dc16918cd5ccfda458f57a)) -* update helper trigger travis [skip ci] ([6c5c1e3](https://github.com/lyne-design-system/lyne-design-tokens/commit/6c5c1e37008fd13fc383e3d92a0b08c02354e29f)) +- update helper trigger travis ([622efb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/622efb89f13b6dd3c0dc16918cd5ccfda458f57a)) +- update helper trigger travis [skip ci] ([6c5c1e3](https://github.com/lyne-design-system/lyne-design-tokens/commit/6c5c1e37008fd13fc383e3d92a0b08c02354e29f)) # [3.1.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.0.0...v3.1.0) (2020-09-08) - ### Features -* add real sbb colors and add correct names (triggered from Figma) [skip ci] ([2978c79](https://github.com/lyne-design-system/lyne-design-tokens/commit/2978c792f1d81cb3a19dfd60b7845718a21d1d9e)) +- add real sbb colors and add correct names (triggered from Figma) [skip ci] ([2978c79](https://github.com/lyne-design-system/lyne-design-tokens/commit/2978c792f1d81cb3a19dfd60b7845718a21d1d9e)) # [3.0.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.3...v3.0.0) (2020-09-08) - ### Bug Fixes -* try workflow for major change ([cebca6a](https://github.com/lyne-design-system/lyne-design-tokens/commit/cebca6a5a184989b22a667144d5c1283d256af2e)) - +- try workflow for major change ([cebca6a](https://github.com/lyne-design-system/lyne-design-tokens/commit/cebca6a5a184989b22a667144d5c1283d256af2e)) ### BREAKING CHANGES -* test major release (triggered from Figma) [skip ci] +- test major release (triggered from Figma) [skip ci] ## [2.7.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.2...v2.7.3) (2020-09-07) - ### Bug Fixes -* remove files and configs for icons workflow ([dc8c36d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc8c36df3f878534ff874fc7fcdc2cd5ee2652ac)) +- remove files and configs for icons workflow ([dc8c36d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc8c36df3f878534ff874fc7fcdc2cd5ee2652ac)) ## [2.7.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.1...v2.7.2) (2020-09-07) - ### Bug Fixes -* test pipeline again (triggered from Figma) [skip ci] ([dfb4e36](https://github.com/lyne-design-system/lyne-design-tokens/commit/dfb4e36f75603b1279f39ee9bab42332bb535036)) +- test pipeline again (triggered from Figma) [skip ci] ([dfb4e36](https://github.com/lyne-design-system/lyne-design-tokens/commit/dfb4e36f75603b1279f39ee9bab42332bb535036)) ## [2.7.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.0...v2.7.1) (2020-09-07) - ### Bug Fixes -* test trigger (triggered from Figma) [skip ci] ([4306238](https://github.com/lyne-design-system/lyne-design-tokens/commit/43062382cb7d186da86558fd50d0f4f0ff574a2a)) +- test trigger (triggered from Figma) [skip ci] ([4306238](https://github.com/lyne-design-system/lyne-design-tokens/commit/43062382cb7d186da86558fd50d0f4f0ff574a2a)) # [2.7.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.6.0...v2.7.0) (2020-09-07) - ### Features -* save info file and move icons to files folder ([659048c](https://github.com/lyne-design-system/lyne-design-tokens/commit/659048c85875d427b84caeb092e50cb9802986c2)) +- save info file and move icons to files folder ([659048c](https://github.com/lyne-design-system/lyne-design-tokens/commit/659048c85875d427b84caeb092e50cb9802986c2)) # [2.6.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.17...v2.6.0) (2020-09-07) - ### Features -* add sample icons after extract ([c264873](https://github.com/lyne-design-system/lyne-design-tokens/commit/c26487393db94041431c7ed9dc7abb4a125a9b44)) -* add second workflow to get svg icons from figma api ([e3874b6](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3874b6273f6bad137c4705e2b6cacfb0d9f2dca)) -* add workflow to save svg's ([e0a1ad3](https://github.com/lyne-design-system/lyne-design-tokens/commit/e0a1ad31733b8022068bddd948c0693e2ae893cb)) -* write svg's to folder ([618f457](https://github.com/lyne-design-system/lyne-design-tokens/commit/618f45715eee9ceb0daa82893eb29e12d5225392)) -* write svg's to folder ([6b99e59](https://github.com/lyne-design-system/lyne-design-tokens/commit/6b99e59c2b655d6d4afa253158ef8426b1479a2d)) +- add sample icons after extract ([c264873](https://github.com/lyne-design-system/lyne-design-tokens/commit/c26487393db94041431c7ed9dc7abb4a125a9b44)) +- add second workflow to get svg icons from figma api ([e3874b6](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3874b6273f6bad137c4705e2b6cacfb0d9f2dca)) +- add workflow to save svg's ([e0a1ad3](https://github.com/lyne-design-system/lyne-design-tokens/commit/e0a1ad31733b8022068bddd948c0693e2ae893cb)) +- write svg's to folder ([618f457](https://github.com/lyne-design-system/lyne-design-tokens/commit/618f45715eee9ceb0daa82893eb29e12d5225392)) +- write svg's to folder ([6b99e59](https://github.com/lyne-design-system/lyne-design-tokens/commit/6b99e59c2b655d6d4afa253158ef8426b1479a2d)) ## [2.5.17](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.16...v2.5.17) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([3e3d1cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e3d1cb07021f10604547fac4be7584019ce0a5b)) +- test (triggered from Figma) [skip ci] ([3e3d1cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e3d1cb07021f10604547fac4be7584019ce0a5b)) ## [2.5.16](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.15...v2.5.16) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([4883599](https://github.com/lyne-design-system/lyne-design-tokens/commit/4883599d5d8fc53b8d913b5193ecc247df101132)) +- test (triggered from Figma) [skip ci] ([4883599](https://github.com/lyne-design-system/lyne-design-tokens/commit/4883599d5d8fc53b8d913b5193ecc247df101132)) ## [2.5.15](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.14...v2.5.15) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([f67b9c0](https://github.com/lyne-design-system/lyne-design-tokens/commit/f67b9c0b06ecd5d0bd672932061e6c73c3298518)) +- test (triggered from Figma) [skip ci] ([f67b9c0](https://github.com/lyne-design-system/lyne-design-tokens/commit/f67b9c0b06ecd5d0bd672932061e6c73c3298518)) ## [2.5.14](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.13...v2.5.14) (2020-09-07) - ### Bug Fixes -* test pipeline (triggered from Figma) [skip ci] ([c3332ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/c3332ecca9ec465cd50611b6dd13b38cd3f0301b)) +- test pipeline (triggered from Figma) [skip ci] ([c3332ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/c3332ecca9ec465cd50611b6dd13b38cd3f0301b)) ## [2.5.13](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.12...v2.5.13) (2020-09-07) - ### Bug Fixes -* add type condition ([8726b77](https://github.com/lyne-design-system/lyne-design-tokens/commit/8726b773df8a5b09567ed338ad79d6e4178a62a1)) -* try to fix condition ([b8c88fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8c88fb67316a1a67496a7b03c27f918028180c0)) -* try to fix condition ([a6e1a79](https://github.com/lyne-design-system/lyne-design-tokens/commit/a6e1a7994dc472636aa41d39b940c1a03df9612f)) +- add type condition ([8726b77](https://github.com/lyne-design-system/lyne-design-tokens/commit/8726b773df8a5b09567ed338ad79d6e4178a62a1)) +- try to fix condition ([b8c88fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8c88fb67316a1a67496a7b03c27f918028180c0)) +- try to fix condition ([a6e1a79](https://github.com/lyne-design-system/lyne-design-tokens/commit/a6e1a7994dc472636aa41d39b940c1a03df9612f)) ## [2.5.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.11...v2.5.12) (2020-09-07) - ### Bug Fixes -* remove stage ([c4ab848](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4ab848adb2b5fde2545af31d5564d5e2e53f73d)) +- remove stage ([c4ab848](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4ab848adb2b5fde2545af31d5564d5e2e53f73d)) ## [2.5.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.10...v2.5.11) (2020-09-07) - ### Bug Fixes -* add second build stage for icons ([69e141f](https://github.com/lyne-design-system/lyne-design-tokens/commit/69e141f2483c48cdce3f255751c2f260cb70de23)) +- add second build stage for icons ([69e141f](https://github.com/lyne-design-system/lyne-design-tokens/commit/69e141f2483c48cdce3f255751c2f260cb70de23)) ## [2.5.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.9...v2.5.10) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([13d21b0](https://github.com/lyne-design-system/lyne-design-tokens/commit/13d21b090af723a09f042321f9482ecba239147a)) +- test (triggered from Figma) [skip ci] ([13d21b0](https://github.com/lyne-design-system/lyne-design-tokens/commit/13d21b090af723a09f042321f9482ecba239147a)) ## [2.5.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.8...v2.5.9) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([d35bae6](https://github.com/lyne-design-system/lyne-design-tokens/commit/d35bae6256fd2797d0a3269c48546be535e954cf)) +- test (triggered from Figma) [skip ci] ([d35bae6](https://github.com/lyne-design-system/lyne-design-tokens/commit/d35bae6256fd2797d0a3269c48546be535e954cf)) ## [2.5.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.7...v2.5.8) (2020-09-07) - ### Bug Fixes -* test pipeline (triggered from Figma) [skip ci] ([d4bb071](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4bb07105b1dd2f8dedafaaf31f89c7134c64905)) +- test pipeline (triggered from Figma) [skip ci] ([d4bb071](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4bb07105b1dd2f8dedafaaf31f89c7134c64905)) ## [2.5.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.6...v2.5.7) (2020-09-03) - ### Bug Fixes -* revert green to red (triggered from Figma) [skip ci] ([89d4031](https://github.com/lyne-design-system/lyne-design-tokens/commit/89d4031d100883657ebcc95b69c61cd3987e627f)) +- revert green to red (triggered from Figma) [skip ci] ([89d4031](https://github.com/lyne-design-system/lyne-design-tokens/commit/89d4031d100883657ebcc95b69c61cd3987e627f)) ## [2.5.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.5...v2.5.6) (2020-09-03) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([1e2c27e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1e2c27ef75d2109ba007c1181cbc008d33e3a3ee)) +- change red to green (triggered from Figma) [skip ci] ([1e2c27e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1e2c27ef75d2109ba007c1181cbc008d33e3a3ee)) ## [2.5.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.4...v2.5.5) (2020-09-02) - ### Bug Fixes -* revert test-change (triggered from Figma) [skip ci] ([252b0cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/252b0cf133ca435bdfefcf39e0ae15563a35995c)) +- revert test-change (triggered from Figma) [skip ci] ([252b0cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/252b0cf133ca435bdfefcf39e0ae15563a35995c)) ## [2.5.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.3...v2.5.4) (2020-09-02) - ### Bug Fixes -* test workflow before review meeting (triggered from Figma) [skip ci] ([1f9a33e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f9a33ed0a98c6b14acea88ce42906b53fd79701)) +- test workflow before review meeting (triggered from Figma) [skip ci] ([1f9a33e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f9a33ed0a98c6b14acea88ce42906b53fd79701)) ## [2.5.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.2...v2.5.3) (2020-08-31) - ### Bug Fixes -* try worflow 2 (triggered from Figma) [skip ci] ([d523dc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d523dc4616c477669319ebebe0b464926bf08463)) +- try worflow 2 (triggered from Figma) [skip ci] ([d523dc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d523dc4616c477669319ebebe0b464926bf08463)) ## [2.5.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.1...v2.5.2) (2020-08-31) - ### Bug Fixes -* revert color red-regular from pink-ish back to red (triggered from Figma) [skip ci] ([36931e5](https://github.com/lyne-design-system/lyne-design-tokens/commit/36931e5851374c5d6ee87a0a66525c2a170b686f)) +- revert color red-regular from pink-ish back to red (triggered from Figma) [skip ci] ([36931e5](https://github.com/lyne-design-system/lyne-design-tokens/commit/36931e5851374c5d6ee87a0a66525c2a170b686f)) ## [2.5.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.0...v2.5.1) (2020-08-31) - ### Bug Fixes -* change red-regular to pink-ish (triggered from Figma) [skip ci] ([ff8c692](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff8c69230df8d3d00e54d421e6f651394843a176)) +- change red-regular to pink-ish (triggered from Figma) [skip ci] ([ff8c692](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff8c69230df8d3d00e54d421e6f651394843a176)) # [2.5.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.4.1...v2.5.0) (2020-08-27) - ### Features -* revert red color (triggered from Figma) [skip ci] ([f6a6d98](https://github.com/lyne-design-system/lyne-design-tokens/commit/f6a6d98783acd6f42cc17f97a36a1a5fbd4597d1)) +- revert red color (triggered from Figma) [skip ci] ([f6a6d98](https://github.com/lyne-design-system/lyne-design-tokens/commit/f6a6d98783acd6f42cc17f97a36a1a5fbd4597d1)) ## [2.4.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.4.0...v2.4.1) (2020-08-27) - ### Bug Fixes -* change red color (triggered from Figma) [skip ci] ([3f0cc45](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f0cc45a09a398e72232011c52e6913c277fb124)) +- change red color (triggered from Figma) [skip ci] ([3f0cc45](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f0cc45a09a398e72232011c52e6913c277fb124)) # [2.4.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.7...v2.4.0) (2020-08-27) - ### Features -* revert green to red (triggered from Figma) [skip ci] ([e07d67d](https://github.com/lyne-design-system/lyne-design-tokens/commit/e07d67da7f77beafcce712d2d3023025db868bfc)) +- revert green to red (triggered from Figma) [skip ci] ([e07d67d](https://github.com/lyne-design-system/lyne-design-tokens/commit/e07d67da7f77beafcce712d2d3023025db868bfc)) ## [2.3.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.6...v2.3.7) (2020-08-27) - ### Bug Fixes -* test change red to green (triggered from Figma) [skip ci] ([7ecf3f6](https://github.com/lyne-design-system/lyne-design-tokens/commit/7ecf3f63d0db4d4d6a1edbb5d7ff6e33774b1bdf)) +- test change red to green (triggered from Figma) [skip ci] ([7ecf3f6](https://github.com/lyne-design-system/lyne-design-tokens/commit/7ecf3f63d0db4d4d6a1edbb5d7ff6e33774b1bdf)) ## [2.3.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.5...v2.3.6) (2020-08-27) - ### Bug Fixes -* use data instead of body attribute in axios request ([4981d60](https://github.com/lyne-design-system/lyne-design-tokens/commit/4981d605879b5fde1ed92457c0c6dfaf88e6a60e)) +- use data instead of body attribute in axios request ([4981d60](https://github.com/lyne-design-system/lyne-design-tokens/commit/4981d605879b5fde1ed92457c0c6dfaf88e6a60e)) ## [2.3.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.4...v2.3.5) (2020-08-27) - ### Bug Fixes -* add log ([6859a20](https://github.com/lyne-design-system/lyne-design-tokens/commit/6859a203d96c7a8a05e6acf3b1de70bea616ec30)) +- add log ([6859a20](https://github.com/lyne-design-system/lyne-design-tokens/commit/6859a203d96c7a8a05e6acf3b1de70bea616ec30)) ## [2.3.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.3...v2.3.4) (2020-08-27) - ### Bug Fixes -* try worflow 2 (triggered from Figma) [skip ci] ([b6565c6](https://github.com/lyne-design-system/lyne-design-tokens/commit/b6565c67b1cf8bf7bb71667ce43b410d5c04d9c0)) +- try worflow 2 (triggered from Figma) [skip ci] ([b6565c6](https://github.com/lyne-design-system/lyne-design-tokens/commit/b6565c67b1cf8bf7bb71667ce43b410d5c04d9c0)) ## [2.3.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.2...v2.3.3) (2020-08-27) - ### Bug Fixes -* trying out new workflow, should update lyne-components (triggered from Figma) [skip ci] ([8b1013f](https://github.com/lyne-design-system/lyne-design-tokens/commit/8b1013fe6f4eb1c122e72167c71d7a76c26b941d)) +- trying out new workflow, should update lyne-components (triggered from Figma) [skip ci] ([8b1013f](https://github.com/lyne-design-system/lyne-design-tokens/commit/8b1013fe6f4eb1c122e72167c71d7a76c26b941d)) ## [2.3.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.1...v2.3.2) (2020-08-26) - ### Bug Fixes -* update vulnerable deps ([588acfe](https://github.com/lyne-design-system/lyne-design-tokens/commit/588acfe5c33cfa617cd10472992abff734067a06)) +- update vulnerable deps ([588acfe](https://github.com/lyne-design-system/lyne-design-tokens/commit/588acfe5c33cfa617cd10472992abff734067a06)) ## [2.3.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.0...v2.3.1) (2020-08-26) - ### Bug Fixes -* update vulerable deps ([47f3b1b](https://github.com/lyne-design-system/lyne-design-tokens/commit/47f3b1b657dc81ea33dbd493ece4e6eeb110b070)) +- update vulerable deps ([47f3b1b](https://github.com/lyne-design-system/lyne-design-tokens/commit/47f3b1b657dc81ea33dbd493ece4e6eeb110b070)) # [2.3.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.2.0...v2.3.0) (2020-08-26) - ### Features -* add blue (triggered from Figma) [skip ci] ([a356544](https://github.com/lyne-design-system/lyne-design-tokens/commit/a35654403e433c0f18dfb32ee77f9d45e15b7100)) +- add blue (triggered from Figma) [skip ci] ([a356544](https://github.com/lyne-design-system/lyne-design-tokens/commit/a35654403e433c0f18dfb32ee77f9d45e15b7100)) # [2.2.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.5...v2.2.0) (2020-08-25) - ### Features -* revert green to red color (triggered from Figma) [skip ci] ([bd1cce2](https://github.com/lyne-design-system/lyne-design-tokens/commit/bd1cce2ec45c9ff5f44e9ede911a5b407d11044f)) +- revert green to red color (triggered from Figma) [skip ci] ([bd1cce2](https://github.com/lyne-design-system/lyne-design-tokens/commit/bd1cce2ec45c9ff5f44e9ede911a5b407d11044f)) ## [2.1.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.4...v2.1.5) (2020-08-25) - ### Bug Fixes -* test change red to green (triggered from Figma) [skip ci] ([9066722](https://github.com/lyne-design-system/lyne-design-tokens/commit/9066722aad54dc4122e5c87cc280dfdf6af636f5)) +- test change red to green (triggered from Figma) [skip ci] ([9066722](https://github.com/lyne-design-system/lyne-design-tokens/commit/9066722aad54dc4122e5c87cc280dfdf6af636f5)) ## [2.1.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.3...v2.1.4) (2020-08-25) - ### Bug Fixes -* änderung grösse headline (triggered from Figma) [skip ci] ([eb80849](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb80849fc062e5200a4bf843879c3f673fc2f2b4)) +- änderung grösse headline (triggered from Figma) [skip ci] ([eb80849](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb80849fc062e5200a4bf843879c3f673fc2f2b4)) ## [2.1.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.2...v2.1.3) (2020-08-25) - ### Bug Fixes -* new size headline level 1 (triggered from Figma) [skip ci] ([52c86a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/52c86a093979644791312e98dd28ceead6f6f7bd)) +- new size headline level 1 (triggered from Figma) [skip ci] ([52c86a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/52c86a093979644791312e98dd28ceead6f6f7bd)) ## [2.1.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.1...v2.1.2) (2020-08-25) - ### Bug Fixes -* fix color-red-dark (triggered from Figma) [skip ci] ([0337d50](https://github.com/lyne-design-system/lyne-design-tokens/commit/0337d508ea233ca7478a527c5bee12149436341f)) +- fix color-red-dark (triggered from Figma) [skip ci] ([0337d50](https://github.com/lyne-design-system/lyne-design-tokens/commit/0337d508ea233ca7478a527c5bee12149436341f)) ## [2.1.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.0...v2.1.1) (2020-08-25) - ### Bug Fixes -* change color red dark (triggered from Figma) [skip ci] ([e698e0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/e698e0fad7f81ecbc18ddda10a550b3540ae40c9)) +- change color red dark (triggered from Figma) [skip ci] ([e698e0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/e698e0fad7f81ecbc18ddda10a550b3540ae40c9)) # [2.1.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.0.0...v2.1.0) (2020-08-25) - ### Features -* add feature to ignore frame in figma ([76c0f38](https://github.com/lyne-design-system/lyne-design-tokens/commit/76c0f3869a851a07bbf1f446f7df6360a690e758)) +- add feature to ignore frame in figma ([76c0f38](https://github.com/lyne-design-system/lyne-design-tokens/commit/76c0f3869a851a07bbf1f446f7df6360a690e758)) # [2.0.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.13.0...v2.0.0) (2020-08-25) - ### chore -* added description ([b8ae982](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8ae982afc0656ac0eb424464c5f7e4cf9aae94a)) - +- added description ([b8ae982](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8ae982afc0656ac0eb424464c5f7e4cf9aae94a)) ### BREAKING CHANGES -* test breaking change, should release 2.0.0 (triggered from Figma) [skip ci] +- test breaking change, should release 2.0.0 (triggered from Figma) [skip ci] # [1.13.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.19...v1.13.0) (2020-08-25) - ### Features -* test feature, should release 1.13.0 (triggered from Figma) [skip ci] ([6a09a98](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a09a989f274af594f8d075c11022f98b763fb5c)) +- test feature, should release 1.13.0 (triggered from Figma) [skip ci] ([6a09a98](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a09a989f274af594f8d075c11022f98b763fb5c)) ## [1.12.19](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.18...v1.12.19) (2020-08-25) - ### Bug Fixes -* test fix from figma, should release 1.12.19 (triggered from Figma) [skip ci] ([3f92366](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f92366311f771a6f40d6e0083a3e4617d2731c8)) +- test fix from figma, should release 1.12.19 (triggered from Figma) [skip ci] ([3f92366](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f92366311f771a6f40d6e0083a3e4617d2731c8)) ## [1.12.18](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.17...v1.12.18) (2020-08-25) - ### Bug Fixes -* fix error message ([4d2edef](https://github.com/lyne-design-system/lyne-design-tokens/commit/4d2edef8697124d5e56448e75cfe906d58dd2d75)) -* get travis commit message for job id from api ([3b24fd6](https://github.com/lyne-design-system/lyne-design-tokens/commit/3b24fd610c12bb83a806a9598eac8735fe510764)) +- fix error message ([4d2edef](https://github.com/lyne-design-system/lyne-design-tokens/commit/4d2edef8697124d5e56448e75cfe906d58dd2d75)) +- get travis commit message for job id from api ([3b24fd6](https://github.com/lyne-design-system/lyne-design-tokens/commit/3b24fd610c12bb83a806a9598eac8735fe510764)) ## [1.12.17](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.16...v1.12.17) (2020-08-24) - ### Bug Fixes -* add skip ci instruction ([dca9a25](https://github.com/lyne-design-system/lyne-design-tokens/commit/dca9a2585dd4b93c62909ebdeb889b68b5cf4b7e)) +- add skip ci instruction ([dca9a25](https://github.com/lyne-design-system/lyne-design-tokens/commit/dca9a2585dd4b93c62909ebdeb889b68b5cf4b7e)) ## [1.12.16](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.15...v1.12.16) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([8311d25](https://github.com/lyne-design-system/lyne-design-tokens/commit/8311d25c1b0ecdb96963805629695baf0be55e22)) +- figma library update [skip ci] ([8311d25](https://github.com/lyne-design-system/lyne-design-tokens/commit/8311d25c1b0ecdb96963805629695baf0be55e22)) ## [1.12.15](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.14...v1.12.15) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([d34ed76](https://github.com/lyne-design-system/lyne-design-tokens/commit/d34ed76b97b5c3793ba7a6ce63083ff2780d0492)) +- figma library update [skip ci] ([d34ed76](https://github.com/lyne-design-system/lyne-design-tokens/commit/d34ed76b97b5c3793ba7a6ce63083ff2780d0492)) ## [1.12.14](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.13...v1.12.14) (2020-08-24) - ### Bug Fixes -* add linter, fix linting styles ([5a0040a](https://github.com/lyne-design-system/lyne-design-tokens/commit/5a0040a577f97da3cd305fc23f4b815c524760ff)) -* figma library update [skip ci] ([8dffac0](https://github.com/lyne-design-system/lyne-design-tokens/commit/8dffac04850277125da5d399163536acb082aac1)) +- add linter, fix linting styles ([5a0040a](https://github.com/lyne-design-system/lyne-design-tokens/commit/5a0040a577f97da3cd305fc23f4b815c524760ff)) +- figma library update [skip ci] ([8dffac0](https://github.com/lyne-design-system/lyne-design-tokens/commit/8dffac04850277125da5d399163536acb082aac1)) ## [1.12.13](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.12...v1.12.13) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([4df7b0e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4df7b0e39284cba930915f7838c1287b681a5e6f)) +- figma library update [skip ci] ([4df7b0e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4df7b0e39284cba930915f7838c1287b681a5e6f)) ## [1.12.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.11...v1.12.12) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([6207da0](https://github.com/lyne-design-system/lyne-design-tokens/commit/6207da02b3783b5038517d2b38b23edc72512037)) +- figma library update [skip ci] ([6207da0](https://github.com/lyne-design-system/lyne-design-tokens/commit/6207da02b3783b5038517d2b38b23edc72512037)) ## [1.12.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.10...v1.12.11) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([c9cefe6](https://github.com/lyne-design-system/lyne-design-tokens/commit/c9cefe6781b3d07e335804ae42edf149b253a748)) +- figma library update [skip ci] ([c9cefe6](https://github.com/lyne-design-system/lyne-design-tokens/commit/c9cefe6781b3d07e335804ae42edf149b253a748)) ## [1.12.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.9...v1.12.10) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([73c1dad](https://github.com/lyne-design-system/lyne-design-tokens/commit/73c1dade08a4139e55d0771923eb5d109caf5282)) +- figma library update [skip ci] ([73c1dad](https://github.com/lyne-design-system/lyne-design-tokens/commit/73c1dade08a4139e55d0771923eb5d109caf5282)) ## [1.12.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.8...v1.12.9) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([e11f151](https://github.com/lyne-design-system/lyne-design-tokens/commit/e11f15104f480657879e2b935d348ccd39490359)) +- figma library update [skip ci] ([e11f151](https://github.com/lyne-design-system/lyne-design-tokens/commit/e11f15104f480657879e2b935d348ccd39490359)) ## [1.12.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.7...v1.12.8) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([fc77fa7](https://github.com/lyne-design-system/lyne-design-tokens/commit/fc77fa75f7731b0ddab3fe289b6eaf1755e5daf1)) +- figma library update [skip ci] ([fc77fa7](https://github.com/lyne-design-system/lyne-design-tokens/commit/fc77fa75f7731b0ddab3fe289b6eaf1755e5daf1)) ## [1.12.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.6...v1.12.7) (2020-08-22) - ### Bug Fixes -* figma library update [skip ci] ([d25caf4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d25caf4acde4e74b2d3e0c1d2804fa13c8b141c9)) +- figma library update [skip ci] ([d25caf4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d25caf4acde4e74b2d3e0c1d2804fa13c8b141c9)) ## [1.12.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.5...v1.12.6) (2020-08-21) - ### Bug Fixes -* figma library update [skip ci] ([f63ca9f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f63ca9f183b0bdef751a678219be1c84f36798dc)) +- figma library update [skip ci] ([f63ca9f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f63ca9f183b0bdef751a678219be1c84f36798dc)) ## [1.12.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.4...v1.12.5) (2020-08-21) - ### Bug Fixes -* figma library update ([88709f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/88709f467411b79cdac1f7347ed4043c71945c4a)) +- figma library update ([88709f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/88709f467411b79cdac1f7347ed4043c71945c4a)) ## [1.12.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.3...v1.12.4) (2020-08-21) - ### Bug Fixes -* figma library update ([0d6c0fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0d6c0fe6e9e893be250b2674e43a8feb074099af)) -* try to push properties file back to repo ([d104a44](https://github.com/lyne-design-system/lyne-design-tokens/commit/d104a44aec1ea4040261e3597cb10a5b6aa707a2)) +- figma library update ([0d6c0fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0d6c0fe6e9e893be250b2674e43a8feb074099af)) +- try to push properties file back to repo ([d104a44](https://github.com/lyne-design-system/lyne-design-tokens/commit/d104a44aec1ea4040261e3597cb10a5b6aa707a2)) ## [1.12.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.2...v1.12.3) (2020-08-20) - ### Bug Fixes -* fake commit to trigger release ([90630f1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90630f11d485a7e3d952dd3656140ca062dabf3f)) +- fake commit to trigger release ([90630f1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90630f11d485a7e3d952dd3656140ca062dabf3f)) ## [1.12.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.1...v1.12.2) (2020-08-20) - ### Bug Fixes -* fake commit to trigger release ([dde287d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dde287d493d77fb78954667f09ad5ee04dbd9965)) -* make sure font size is defined in px ([f248ef3](https://github.com/lyne-design-system/lyne-design-tokens/commit/f248ef37b3082dffb6f70c0ff3eae1f6203c1186)) +- fake commit to trigger release ([dde287d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dde287d493d77fb78954667f09ad5ee04dbd9965)) +- make sure font size is defined in px ([f248ef3](https://github.com/lyne-design-system/lyne-design-tokens/commit/f248ef37b3082dffb6f70c0ff3eae1f6203c1186)) ## [1.12.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.0...v1.12.1) (2020-08-20) - ### Bug Fixes -* font size json ([edc09f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/edc09f94e1560a1e2e7eeaf7b3b1385a2ee8f49f)) +- font size json ([edc09f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/edc09f94e1560a1e2e7eeaf7b3b1385a2ee8f49f)) # [1.12.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.8...v1.12.0) (2020-08-20) - ### Bug Fixes -* add comments, uncommend non-zero exit code for travis ([bed5093](https://github.com/lyne-design-system/lyne-design-tokens/commit/bed509390033a84a3c436bb44a8adf12079a8a64)) -* add correct build scripts ([68d7d93](https://github.com/lyne-design-system/lyne-design-tokens/commit/68d7d9326b1164828bf929c45e3e0c13fd691257)) -* add properties folder to gitignore ([6470c31](https://github.com/lyne-design-system/lyne-design-tokens/commit/6470c31922cf1087fe8fa38ac8147379c5c554ed)) -* correct comment ([90ddd97](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ddd97cadd3537f9139ce8a5dd3d3611c8aac60)) -* remove json lint ([934a5bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/934a5bf12449a79b59a52e003ab58cf12582ec44)) -* remove shell script, get figma json in node instead ([2c5fbfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/2c5fbfab8a6406a8fbee43b1fa2ddcb0876e4dfe)) -* switch frames and texts to figma components ([3f7d93d](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f7d93d14b7c0699e8a0323e2b8041615e5c8e0b)) -* use correct config parameter ([b0656cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0656cb6921b51beee37842ca5478704344b54f3)) - +- add comments, uncommend non-zero exit code for travis ([bed5093](https://github.com/lyne-design-system/lyne-design-tokens/commit/bed509390033a84a3c436bb44a8adf12079a8a64)) +- add correct build scripts ([68d7d93](https://github.com/lyne-design-system/lyne-design-tokens/commit/68d7d9326b1164828bf929c45e3e0c13fd691257)) +- add properties folder to gitignore ([6470c31](https://github.com/lyne-design-system/lyne-design-tokens/commit/6470c31922cf1087fe8fa38ac8147379c5c554ed)) +- correct comment ([90ddd97](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ddd97cadd3537f9139ce8a5dd3d3611c8aac60)) +- remove json lint ([934a5bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/934a5bf12449a79b59a52e003ab58cf12582ec44)) +- remove shell script, get figma json in node instead ([2c5fbfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/2c5fbfab8a6406a8fbee43b1fa2ddcb0876e4dfe)) +- switch frames and texts to figma components ([3f7d93d](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f7d93d14b7c0699e8a0323e2b8041615e5c8e0b)) +- use correct config parameter ([b0656cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0656cb6921b51beee37842ca5478704344b54f3)) ### Features -* add npm script to run figma shell script ([38d5cb0](https://github.com/lyne-design-system/lyne-design-tokens/commit/38d5cb09a0fba499555931cd435c8175a0a26809)) -* add shell script to get file info json from figma api ([62177f3](https://github.com/lyne-design-system/lyne-design-tokens/commit/62177f3444ad80a46de8e02d7445be762452cded)) -* extract design values from figma file ([05fe6c9](https://github.com/lyne-design-system/lyne-design-tokens/commit/05fe6c9fa7eb957fca9ff902843716635a3d5876)) -* finalize workflow ([1850be3](https://github.com/lyne-design-system/lyne-design-tokens/commit/1850be3f641aa69124d6013fbf6e4c2a848b1b97)) -* write json files ([4c49c3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c49c3b9873e47e2750b8941e5cf9d9bff5af852)) +- add npm script to run figma shell script ([38d5cb0](https://github.com/lyne-design-system/lyne-design-tokens/commit/38d5cb09a0fba499555931cd435c8175a0a26809)) +- add shell script to get file info json from figma api ([62177f3](https://github.com/lyne-design-system/lyne-design-tokens/commit/62177f3444ad80a46de8e02d7445be762452cded)) +- extract design values from figma file ([05fe6c9](https://github.com/lyne-design-system/lyne-design-tokens/commit/05fe6c9fa7eb957fca9ff902843716635a3d5876)) +- finalize workflow ([1850be3](https://github.com/lyne-design-system/lyne-design-tokens/commit/1850be3f641aa69124d6013fbf6e4c2a848b1b97)) +- write json files ([4c49c3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c49c3b9873e47e2750b8941e5cf9d9bff5af852)) ## [1.11.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.7...v1.11.8) (2020-07-17) - ### Bug Fixes -* change main color back to red ([7b65d90](https://github.com/lyne-design-system/lyne-design-tokens/commit/7b65d90d88f6c7d5602c4bacec06254a3716958d)) +- change main color back to red ([7b65d90](https://github.com/lyne-design-system/lyne-design-tokens/commit/7b65d90d88f6c7d5602c4bacec06254a3716958d)) ## [1.11.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.6...v1.11.7) (2020-07-13) - ### Bug Fixes -* change main color ([588a587](https://github.com/lyne-design-system/lyne-design-tokens/commit/588a5879b1d7e0a7290310ec1295b532f186e88b)) +- change main color ([588a587](https://github.com/lyne-design-system/lyne-design-tokens/commit/588a5879b1d7e0a7290310ec1295b532f186e88b)) ## [1.11.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.5...v1.11.6) (2020-07-10) - ### Bug Fixes -* revert base color change ([fa3290d](https://github.com/lyne-design-system/lyne-design-tokens/commit/fa3290d8865265b072cb1787ca596c613339bf90)) +- revert base color change ([fa3290d](https://github.com/lyne-design-system/lyne-design-tokens/commit/fa3290d8865265b072cb1787ca596c613339bf90)) ## [1.11.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.4...v1.11.5) (2020-07-10) - ### Bug Fixes -* change description of base color ([6a70cfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a70cfa63d18587498cbd4bd43aa867e40e9c158)) -* temporary change base color ([444db46](https://github.com/lyne-design-system/lyne-design-tokens/commit/444db4607e273cf135933aba8bc018beb6081bdf)) +- change description of base color ([6a70cfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a70cfa63d18587498cbd4bd43aa867e40e9c158)) +- temporary change base color ([444db46](https://github.com/lyne-design-system/lyne-design-tokens/commit/444db4607e273cf135933aba8bc018beb6081bdf)) ## [1.11.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.3...v1.11.4) (2020-06-02) - ### Bug Fixes -* add eslint as a dependency ([dc2f658](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc2f65802e50bbbe604b56db5dbf8f21ba55d1ce)) -* add eslint config ([311f718](https://github.com/lyne-design-system/lyne-design-tokens/commit/311f718778c17b909a42439400b031e922e24a34)) -* add line breaks in json files ([81e5a82](https://github.com/lyne-design-system/lyne-design-tokens/commit/81e5a82f7a0abaf57f94163d2d41cb6a1488ffc2)) +- add eslint as a dependency ([dc2f658](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc2f65802e50bbbe604b56db5dbf8f21ba55d1ce)) +- add eslint config ([311f718](https://github.com/lyne-design-system/lyne-design-tokens/commit/311f718778c17b909a42439400b031e922e24a34)) +- add line breaks in json files ([81e5a82](https://github.com/lyne-design-system/lyne-design-tokens/commit/81e5a82f7a0abaf57f94163d2d41cb6a1488ffc2)) ## [1.11.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.2...v1.11.3) (2020-05-18) - ### Bug Fixes -* add slack notification for travis builds ([a07ad9e](https://github.com/lyne-design-system/lyne-design-tokens/commit/a07ad9e7922882076b8e76575251948971d76e55)) +- add slack notification for travis builds ([a07ad9e](https://github.com/lyne-design-system/lyne-design-tokens/commit/a07ad9e7922882076b8e76575251948971d76e55)) ## [1.11.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.1...v1.11.2) (2020-05-18) - ### Bug Fixes -* reformat release message (fake fix to trigger release) ([109a13d](https://github.com/lyne-design-system/lyne-design-tokens/commit/109a13d1478f41896dd86f456f8fca6e4e358630)) +- reformat release message (fake fix to trigger release) ([109a13d](https://github.com/lyne-design-system/lyne-design-tokens/commit/109a13d1478f41896dd86f456f8fca6e4e358630)) ## [1.11.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.0...v1.11.1) (2020-05-13) - ### Bug Fixes -* revert test change ([cff9971](https://github.com/lyne-design-system/lyne-design-tokens/commit/cff997171cb233ef7a96e3316dd0fff1c8cfcb97)) +- revert test change ([cff9971](https://github.com/lyne-design-system/lyne-design-tokens/commit/cff997171cb233ef7a96e3316dd0fff1c8cfcb97)) # [1.11.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.10.0...v1.11.0) (2020-05-13) - ### Features -* test color change ([395cd2c](https://github.com/lyne-design-system/lyne-design-tokens/commit/395cd2c27cd6ae69662d0124f61a5ea33d849e29)) +- test color change ([395cd2c](https://github.com/lyne-design-system/lyne-design-tokens/commit/395cd2c27cd6ae69662d0124f61a5ea33d849e29)) # [1.10.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.9.1...v1.10.0) (2020-04-22) - ### Features -* add sample sketch constructor, but comment it out ([5cb2de4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5cb2de4bd1877b9da7bd0398a85d47aff87a81d9)) +- add sample sketch constructor, but comment it out ([5cb2de4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5cb2de4bd1877b9da7bd0398a85d47aff87a81d9)) ## [1.9.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.9.0...v1.9.1) (2020-04-06) - ### Bug Fixes -* add custom commonjs transformer and remove deprecated transformers ([b51c766](https://github.com/lyne-design-system/lyne-design-tokens/commit/b51c7662e0c13d75daeb39e152a62e7849d56554)) +- add custom commonjs transformer and remove deprecated transformers ([b51c766](https://github.com/lyne-design-system/lyne-design-tokens/commit/b51c7662e0c13d75daeb39e152a62e7849d56554)) # [1.9.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.8.0...v1.9.0) (2020-04-06) - ### Bug Fixes -* make sure js output target is correctly transformed ([8a066a4](https://github.com/lyne-design-system/lyne-design-tokens/commit/8a066a49c4bada067f8e68dee28902aeb545a0a0)) - +- make sure js output target is correctly transformed ([8a066a4](https://github.com/lyne-design-system/lyne-design-tokens/commit/8a066a49c4bada067f8e68dee28902aeb545a0a0)) ### Features -* add sample for token deprecation ([23d9a81](https://github.com/lyne-design-system/lyne-design-tokens/commit/23d9a81ba7a2277179dcf8b7723567aec4d6b8b3)) +- add sample for token deprecation ([23d9a81](https://github.com/lyne-design-system/lyne-design-tokens/commit/23d9a81ba7a2277179dcf8b7723567aec4d6b8b3)) # [1.8.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.7.0...v1.8.0) (2020-04-06) - ### Bug Fixes -* rename lint script ([f07c5c4](https://github.com/lyne-design-system/lyne-design-tokens/commit/f07c5c4436c107456fddab62ead8e87479f72d3d)) - +- rename lint script ([f07c5c4](https://github.com/lyne-design-system/lyne-design-tokens/commit/f07c5c4436c107456fddab62ead8e87479f72d3d)) ### Features -* add more output targets for sass, less ([207ef94](https://github.com/lyne-design-system/lyne-design-tokens/commit/207ef947aba548189bf974e0f21b7afadea12621)) +- add more output targets for sass, less ([207ef94](https://github.com/lyne-design-system/lyne-design-tokens/commit/207ef947aba548189bf974e0f21b7afadea12621)) # [1.7.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.6.0...v1.7.0) (2020-04-06) - ### Features -* add umd exports for javascript output target ([0e8224e](https://github.com/lyne-design-system/lyne-design-tokens/commit/0e8224e42688f9647f56ea13bf28ed0cce599ab5)) +- add umd exports for javascript output target ([0e8224e](https://github.com/lyne-design-system/lyne-design-tokens/commit/0e8224e42688f9647f56ea13bf28ed0cce599ab5)) # [1.6.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.5.0...v1.6.0) (2020-04-06) - ### Bug Fixes -* add comment for red main color ([bdce397](https://github.com/lyne-design-system/lyne-design-tokens/commit/bdce397d057a9d00a1d9888c195f3234b17760fc)) -* fix linting issue ([d4ae8a1](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4ae8a1003381ae8f08a00fcc5ebe5d048f6386c)) - +- add comment for red main color ([bdce397](https://github.com/lyne-design-system/lyne-design-tokens/commit/bdce397d057a9d00a1d9888c195f3234b17760fc)) +- fix linting issue ([d4ae8a1](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4ae8a1003381ae8f08a00fcc5ebe5d048f6386c)) ### Features -* add javascript module and object as additional output target ([9dc9803](https://github.com/lyne-design-system/lyne-design-tokens/commit/9dc9803b9838416f7c40dac7a1f99091a5dfbb11)) +- add javascript module and object as additional output target ([9dc9803](https://github.com/lyne-design-system/lyne-design-tokens/commit/9dc9803b9838416f7c40dac7a1f99091a5dfbb11)) # [1.5.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.4.1...v1.5.0) (2020-04-05) - ### Features -* add json output target ([04bb093](https://github.com/lyne-design-system/lyne-design-tokens/commit/04bb093651ea37bd6b524dc0e4495389491061de)) -* add sketch and js output targets ([8de0998](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de099866833b074264350ede16c12c492961296)) +- add json output target ([04bb093](https://github.com/lyne-design-system/lyne-design-tokens/commit/04bb093651ea37bd6b524dc0e4495389491061de)) +- add sketch and js output targets ([8de0998](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de099866833b074264350ede16c12c492961296)) ## [1.4.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.4.0...v1.4.1) (2020-04-05) - ### Bug Fixes -* add linting step before building package ([a5441f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/a5441f4972fb9b84b8f6c9d7f1908793e1d74b69)) +- add linting step before building package ([a5441f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/a5441f4972fb9b84b8f6c9d7f1908793e1d74b69)) # [1.4.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.3.1...v1.4.0) (2020-04-05) - ### Bug Fixes -* fix json format ([90dc180](https://github.com/lyne-design-system/lyne-design-tokens/commit/90dc180a341343d6481d5ef258e27c98ad78a42d)) - +- fix json format ([90dc180](https://github.com/lyne-design-system/lyne-design-tokens/commit/90dc180a341343d6481d5ef258e27c98ad78a42d)) ### Features -* fake commit to trigger release ([56adf30](https://github.com/lyne-design-system/lyne-design-tokens/commit/56adf305a045d9012a4f693201d68d6625d795d4)) -* test chaning some properties ([8f67915](https://github.com/lyne-design-system/lyne-design-tokens/commit/8f67915e1a7a1dbe5a0564290e7783a5aa0043d8)) +- fake commit to trigger release ([56adf30](https://github.com/lyne-design-system/lyne-design-tokens/commit/56adf305a045d9012a4f693201d68d6625d795d4)) +- test chaning some properties ([8f67915](https://github.com/lyne-design-system/lyne-design-tokens/commit/8f67915e1a7a1dbe5a0564290e7783a5aa0043d8)) ## [1.3.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.3.0...v1.3.1) (2020-04-05) - ### Bug Fixes -* fake commit to trigger release ([e013e64](https://github.com/lyne-design-system/lyne-design-tokens/commit/e013e64d47abde64c18ddeeec1016f817d615dc9)) +- fake commit to trigger release ([e013e64](https://github.com/lyne-design-system/lyne-design-tokens/commit/e013e64d47abde64c18ddeeec1016f817d615dc9)) # [1.3.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.2.0...v1.3.0) (2020-04-05) - ### Bug Fixes -* remove build folder, build in dist folder ([3d85e76](https://github.com/lyne-design-system/lyne-design-tokens/commit/3d85e76f811b49a43e1c0f4a6d4dc40c9e2bd4ad)) - +- remove build folder, build in dist folder ([3d85e76](https://github.com/lyne-design-system/lyne-design-tokens/commit/3d85e76f811b49a43e1c0f4a6d4dc40c9e2bd4ad)) ### Features -* fake commit to trigger release ([a70c433](https://github.com/lyne-design-system/lyne-design-tokens/commit/a70c433b47ffb006b9ead825468db123b375f716)) -* make sure npm publishes the build folder ([297ff7d](https://github.com/lyne-design-system/lyne-design-tokens/commit/297ff7db5f29727534731511d435e7ae0436394e)) +- fake commit to trigger release ([a70c433](https://github.com/lyne-design-system/lyne-design-tokens/commit/a70c433b47ffb006b9ead825468db123b375f716)) +- make sure npm publishes the build folder ([297ff7d](https://github.com/lyne-design-system/lyne-design-tokens/commit/297ff7db5f29727534731511d435e7ae0436394e)) # [1.2.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.1.0...v1.2.0) (2020-04-05) - ### Features -* fake commit to trigger release ([e4f1bd1](https://github.com/lyne-design-system/lyne-design-tokens/commit/e4f1bd16f06cfd9c004fb879c4ae2c05c465b832)) -* make sure that build folder is published ([5630810](https://github.com/lyne-design-system/lyne-design-tokens/commit/56308106c4e61a2240de748640df5e2027bf26a9)) +- fake commit to trigger release ([e4f1bd1](https://github.com/lyne-design-system/lyne-design-tokens/commit/e4f1bd16f06cfd9c004fb879c4ae2c05c465b832)) +- make sure that build folder is published ([5630810](https://github.com/lyne-design-system/lyne-design-tokens/commit/56308106c4e61a2240de748640df5e2027bf26a9)) # [1.1.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.0.0...v1.1.0) (2020-04-05) - ### Features -* add semantic release slack bot ([78a9cda](https://github.com/lyne-design-system/lyne-design-tokens/commit/78a9cda1538eb1a5497abf2a6ef1f376435787c3)) -* fake commit to trigger release ([1651432](https://github.com/lyne-design-system/lyne-design-tokens/commit/16514329bf4f79499e1b0f49c35078b32a1d0bd4)) +- add semantic release slack bot ([78a9cda](https://github.com/lyne-design-system/lyne-design-tokens/commit/78a9cda1538eb1a5497abf2a6ef1f376435787c3)) +- fake commit to trigger release ([1651432](https://github.com/lyne-design-system/lyne-design-tokens/commit/16514329bf4f79499e1b0f49c35078b32a1d0bd4)) # 1.0.0 (2020-04-05) - ### Features -* add style dictionary ([87d5243](https://github.com/lyne-design-system/lyne-design-tokens/commit/87d52436b57014bf312179e1cd87d5afcbf490b1)) +- add style dictionary ([87d5243](https://github.com/lyne-design-system/lyne-design-tokens/commit/87d52436b57014bf312179e1cd87d5afcbf490b1)) diff --git a/README.md b/README.md index 31926048..8337ca73 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,13 @@ Automatically generate cross platform Design Tokens for the Lyne Design System b ## Installation Install the Lyne Design Tokens with the following command: + ```bash npm install --save-dev lyne-design-tokens ``` + ## What's included + ``` lyne-design-tokens/ ├── designTokens/ # Token source files @@ -23,9 +26,9 @@ lyne-design-tokens/ │ ├── tokens.commonjs.js # Flat commonjs file │ ├── tokens.es6.js # Flat es6 file │ └── tokens.json # Flat .json file - ├── less/ + ├── less/ │ └── variables.less # Less variables - └── scss/ + └── scss/ ├── variables_css--placeholder.scss # CSS variables with Sass placeholder selector (%) └── variables.scss # Sass variables ``` @@ -43,6 +46,7 @@ Please follow the [Conventional Commits](https://www.conventionalcommits.org/en/ ### Env Variables To test and develop the workflow on your local machine, you need to setup an `.env` file in the root directory of the project with the following content: + ```bash TRAVIS_TOKEN=XXX ``` diff --git a/build.js b/build.js index d534e420..2a8c17b6 100644 --- a/build.js +++ b/build.js @@ -1,5 +1,4 @@ -const StyleDictionary = require('style-dictionary') - .extend(`${__dirname}/config.js`); +const StyleDictionary = require('style-dictionary').extend(`${__dirname}/config.js`); const fs = require('fs'); const _ = require('lodash'); @@ -8,24 +7,19 @@ console.log('\n=============================================='); StyleDictionary.registerFormat({ formatter: _.template(fs.readFileSync(`${__dirname}/templates/web-scss.template`)), - name: 'custom/format/scss' + name: 'custom/format/scss', }); StyleDictionary.registerFormat({ formatter: _.template(fs.readFileSync(`${__dirname}/templates/commonjs.template`)), - name: 'custom/format/javascript/module' + name: 'custom/format/javascript/module', }); StyleDictionary.registerFormat({ - formatter: ({ - dictionary - }) => { - const { - allTokens - } = dictionary; + formatter: ({ dictionary }) => { + const { allTokens } = dictionary; allTokens.forEach((token) => { - // if a token uses a refernce token, we add the original token object const usesReference = dictionary.usesReference(token); @@ -34,16 +28,15 @@ StyleDictionary.registerFormat({ token.refOriginal = ref; } - }); const fileContents = { - tokens: allTokens + tokens: allTokens, }; return JSON.stringify(fileContents, null, 2); }, - name: 'json/extended' + name: 'json/extended', }); // FINALLY, BUILD ALL THE PLATFORMS diff --git a/cdn/index.html b/cdn/index.html index 78ed829d..e575ffe5 100644 --- a/cdn/index.html +++ b/cdn/index.html @@ -1,25 +1,26 @@ + + + + + Lyne Design Tokens CDN + + +

CDN for Lyne Design Tokens

- - - - - Lyne Design Tokens CDN - - -

CDN for Lyne Design Tokens

+

Every release has a folder containing a file with all the design token declarations.

-

Every release has a folder containing a file with all the design token declarations.

+

+ There is a JSON-File containing all the versions along with the corresponding urls to the + tokens.json file: tokens.json +

-

There is a JSON-File containing all the versions along with the corresponding urls to the tokens.json file: tokens.json

+

Directories

-

Directories

+

Latest Release

+

tokens.json

-

Latest Release

-

tokens.json

- -

Versions

- + + diff --git a/cdn/tokens.json b/cdn/tokens.json index a4b84883..7ebe7dd7 100644 --- a/cdn/tokens.json +++ b/cdn/tokens.json @@ -246,4 +246,4 @@ "typo-scale-4x": 64 }, "version": "3.21.1" -} \ No newline at end of file +} diff --git a/cdn/versions.json b/cdn/versions.json index 5f472a0e..c0e4e0d7 100644 --- a/cdn/versions.json +++ b/cdn/versions.json @@ -1 +1,25 @@ -{"3.21.1":{"tokens":"/versions/3.21.1/tokens.json","url":"/versions/3.21.1"},"3.21.0":{"tokens":"/versions/3.21.0/tokens.json","url":"/versions/3.21.0"},"3.20.3":{"tokens":"/versions/3.20.3/tokens.json","url":"/versions/3.20.3"},"3.20.2":{"tokens":"/versions/3.20.2/tokens.json","url":"/versions/3.20.2"},"3.20.1":{"tokens":"/versions/3.20.1/tokens.json","url":"/versions/3.20.1"},"3.20.0":{"tokens":"/versions/3.20.0/tokens.json","url":"/versions/3.20.0"},"3.19.0":{"tokens":"/versions/3.19.0/tokens.json","url":"/versions/3.19.0"},"3.18.0":{"tokens":"/versions/3.18.0/tokens.json","url":"/versions/3.18.0"},"3.17.1":{"tokens":"/versions/3.17.1/tokens.json","url":"/versions/3.17.1"},"3.16.0":{"tokens":"/versions/3.16.0/tokens.json","url":"/versions/3.16.0"},"3.15.3":{"tokens":"/versions/3.15.3/tokens.json","url":"/versions/3.15.3"},"3.15.2":{"tokens":"/versions/3.15.2/tokens.json","url":"/versions/3.15.2"},"3.15.1":{"tokens":"/versions/3.15.1/tokens.json","url":"/versions/3.15.1"},"3.15.0":{"tokens":"/versions/3.15.0/tokens.json","url":"/versions/3.15.0"},"3.14.4":{"tokens":"/versions/3.14.4/tokens.json","url":"/versions/3.14.4"},"3.14.3":{"tokens":"/versions/3.14.3/tokens.json","url":"/versions/3.14.3"},"3.14.2":{"tokens":"/versions/3.14.2/tokens.json","url":"/versions/3.14.2"},"3.14.1":{"tokens":"/versions/3.14.1/tokens.json","url":"/versions/3.14.1"},"3.14.0":{"tokens":"/versions/3.14.0/tokens.json","url":"/versions/3.14.0"},"3.13.4":{"tokens":"/versions/3.13.4/tokens.json","url":"/versions/3.13.4"},"3.13.3":{"tokens":"/versions/3.13.3/tokens.json","url":"/versions/3.13.3"},"3.13.2":{"tokens":"/versions/3.13.2/tokens.json","url":"/versions/3.13.2"},"3.13.1":{"tokens":"/versions/3.13.1/tokens.json","url":"/versions/3.13.1"}} \ No newline at end of file +{ + "3.21.1": { "tokens": "/versions/3.21.1/tokens.json", "url": "/versions/3.21.1" }, + "3.21.0": { "tokens": "/versions/3.21.0/tokens.json", "url": "/versions/3.21.0" }, + "3.20.3": { "tokens": "/versions/3.20.3/tokens.json", "url": "/versions/3.20.3" }, + "3.20.2": { "tokens": "/versions/3.20.2/tokens.json", "url": "/versions/3.20.2" }, + "3.20.1": { "tokens": "/versions/3.20.1/tokens.json", "url": "/versions/3.20.1" }, + "3.20.0": { "tokens": "/versions/3.20.0/tokens.json", "url": "/versions/3.20.0" }, + "3.19.0": { "tokens": "/versions/3.19.0/tokens.json", "url": "/versions/3.19.0" }, + "3.18.0": { "tokens": "/versions/3.18.0/tokens.json", "url": "/versions/3.18.0" }, + "3.17.1": { "tokens": "/versions/3.17.1/tokens.json", "url": "/versions/3.17.1" }, + "3.16.0": { "tokens": "/versions/3.16.0/tokens.json", "url": "/versions/3.16.0" }, + "3.15.3": { "tokens": "/versions/3.15.3/tokens.json", "url": "/versions/3.15.3" }, + "3.15.2": { "tokens": "/versions/3.15.2/tokens.json", "url": "/versions/3.15.2" }, + "3.15.1": { "tokens": "/versions/3.15.1/tokens.json", "url": "/versions/3.15.1" }, + "3.15.0": { "tokens": "/versions/3.15.0/tokens.json", "url": "/versions/3.15.0" }, + "3.14.4": { "tokens": "/versions/3.14.4/tokens.json", "url": "/versions/3.14.4" }, + "3.14.3": { "tokens": "/versions/3.14.3/tokens.json", "url": "/versions/3.14.3" }, + "3.14.2": { "tokens": "/versions/3.14.2/tokens.json", "url": "/versions/3.14.2" }, + "3.14.1": { "tokens": "/versions/3.14.1/tokens.json", "url": "/versions/3.14.1" }, + "3.14.0": { "tokens": "/versions/3.14.0/tokens.json", "url": "/versions/3.14.0" }, + "3.13.4": { "tokens": "/versions/3.13.4/tokens.json", "url": "/versions/3.13.4" }, + "3.13.3": { "tokens": "/versions/3.13.3/tokens.json", "url": "/versions/3.13.3" }, + "3.13.2": { "tokens": "/versions/3.13.2/tokens.json", "url": "/versions/3.13.2" }, + "3.13.1": { "tokens": "/versions/3.13.1/tokens.json", "url": "/versions/3.13.1" } +} diff --git a/cdn/versions/3.13.1/tokens.json b/cdn/versions/3.13.1/tokens.json index e0724b3a..18298634 100644 --- a/cdn/versions/3.13.1/tokens.json +++ b/cdn/versions/3.13.1/tokens.json @@ -290,4 +290,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.13.1" -} \ No newline at end of file +} diff --git a/cdn/versions/3.13.2/tokens.json b/cdn/versions/3.13.2/tokens.json index 284ec6b3..11269a92 100644 --- a/cdn/versions/3.13.2/tokens.json +++ b/cdn/versions/3.13.2/tokens.json @@ -290,4 +290,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.13.2" -} \ No newline at end of file +} diff --git a/cdn/versions/3.13.3/tokens.json b/cdn/versions/3.13.3/tokens.json index 7ff7e342..3711115e 100644 --- a/cdn/versions/3.13.3/tokens.json +++ b/cdn/versions/3.13.3/tokens.json @@ -290,4 +290,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.13.3" -} \ No newline at end of file +} diff --git a/cdn/versions/3.13.4/tokens.json b/cdn/versions/3.13.4/tokens.json index 5e0b270b..c849a5b9 100644 --- a/cdn/versions/3.13.4/tokens.json +++ b/cdn/versions/3.13.4/tokens.json @@ -290,4 +290,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.13.4" -} \ No newline at end of file +} diff --git a/cdn/versions/3.14.0/tokens.json b/cdn/versions/3.14.0/tokens.json index efd62041..cad23109 100644 --- a/cdn/versions/3.14.0/tokens.json +++ b/cdn/versions/3.14.0/tokens.json @@ -299,4 +299,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.14.0" -} \ No newline at end of file +} diff --git a/cdn/versions/3.14.1/tokens.json b/cdn/versions/3.14.1/tokens.json index e628149e..5ae98081 100644 --- a/cdn/versions/3.14.1/tokens.json +++ b/cdn/versions/3.14.1/tokens.json @@ -299,4 +299,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.14.1" -} \ No newline at end of file +} diff --git a/cdn/versions/3.14.2/tokens.json b/cdn/versions/3.14.2/tokens.json index 303b36a1..6b45c21c 100644 --- a/cdn/versions/3.14.2/tokens.json +++ b/cdn/versions/3.14.2/tokens.json @@ -299,4 +299,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.14.2" -} \ No newline at end of file +} diff --git a/cdn/versions/3.14.3/tokens.json b/cdn/versions/3.14.3/tokens.json index 4eab5988..afe98602 100644 --- a/cdn/versions/3.14.3/tokens.json +++ b/cdn/versions/3.14.3/tokens.json @@ -299,4 +299,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.14.3" -} \ No newline at end of file +} diff --git a/cdn/versions/3.14.4/tokens.json b/cdn/versions/3.14.4/tokens.json index e9210756..ff1adee8 100644 --- a/cdn/versions/3.14.4/tokens.json +++ b/cdn/versions/3.14.4/tokens.json @@ -275,4 +275,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.14.4" -} \ No newline at end of file +} diff --git a/cdn/versions/3.15.0/tokens.json b/cdn/versions/3.15.0/tokens.json index f13aaabd..fb94227b 100644 --- a/cdn/versions/3.15.0/tokens.json +++ b/cdn/versions/3.15.0/tokens.json @@ -276,4 +276,4 @@ "typo-font-style-input-medium-to-ultra-line-height": 1.8 }, "version": "3.15.0" -} \ No newline at end of file +} diff --git a/cdn/versions/3.15.1/tokens.json b/cdn/versions/3.15.1/tokens.json index 7eb3f688..90d4ccc2 100644 --- a/cdn/versions/3.15.1/tokens.json +++ b/cdn/versions/3.15.1/tokens.json @@ -201,4 +201,4 @@ "typo-text-xs-bold-font-family": "'SBBWeb Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif" }, "version": "3.15.1" -} \ No newline at end of file +} diff --git a/cdn/versions/3.15.2/tokens.json b/cdn/versions/3.15.2/tokens.json index 8dcdaf94..8538c8c8 100644 --- a/cdn/versions/3.15.2/tokens.json +++ b/cdn/versions/3.15.2/tokens.json @@ -179,4 +179,4 @@ "typo-scale-4x": 64 }, "version": "3.15.2" -} \ No newline at end of file +} diff --git a/cdn/versions/3.15.3/tokens.json b/cdn/versions/3.15.3/tokens.json index b324fcc3..b55a4739 100644 --- a/cdn/versions/3.15.3/tokens.json +++ b/cdn/versions/3.15.3/tokens.json @@ -179,4 +179,4 @@ "typo-scale-4x": 64 }, "version": "3.15.3" -} \ No newline at end of file +} diff --git a/cdn/versions/3.16.0/tokens.json b/cdn/versions/3.16.0/tokens.json index e2340736..ff12b7c4 100644 --- a/cdn/versions/3.16.0/tokens.json +++ b/cdn/versions/3.16.0/tokens.json @@ -179,4 +179,4 @@ "typo-scale-4x": 64 }, "version": "3.16.0" -} \ No newline at end of file +} diff --git a/cdn/versions/3.17.1/tokens.json b/cdn/versions/3.17.1/tokens.json index 3b3059ed..771d3d3f 100644 --- a/cdn/versions/3.17.1/tokens.json +++ b/cdn/versions/3.17.1/tokens.json @@ -207,4 +207,4 @@ "typo-scale-4x": 64 }, "version": "3.17.1" -} \ No newline at end of file +} diff --git a/cdn/versions/3.18.0/tokens.json b/cdn/versions/3.18.0/tokens.json index ab316612..8dec98d7 100644 --- a/cdn/versions/3.18.0/tokens.json +++ b/cdn/versions/3.18.0/tokens.json @@ -228,4 +228,4 @@ "typo-scale-4x": 64 }, "version": "3.18.0" -} \ No newline at end of file +} diff --git a/cdn/versions/3.19.0/tokens.json b/cdn/versions/3.19.0/tokens.json index eca066aa..717bb29f 100644 --- a/cdn/versions/3.19.0/tokens.json +++ b/cdn/versions/3.19.0/tokens.json @@ -228,4 +228,4 @@ "typo-scale-4x": 64 }, "version": "3.19.0" -} \ No newline at end of file +} diff --git a/cdn/versions/3.20.0/tokens.json b/cdn/versions/3.20.0/tokens.json index 1b161444..7f4cb601 100644 --- a/cdn/versions/3.20.0/tokens.json +++ b/cdn/versions/3.20.0/tokens.json @@ -228,4 +228,4 @@ "typo-scale-4x": 64 }, "version": "3.20.0" -} \ No newline at end of file +} diff --git a/cdn/versions/3.20.1/tokens.json b/cdn/versions/3.20.1/tokens.json index 636cd653..4ca897b5 100644 --- a/cdn/versions/3.20.1/tokens.json +++ b/cdn/versions/3.20.1/tokens.json @@ -240,4 +240,4 @@ "typo-scale-4x": 64 }, "version": "3.20.1" -} \ No newline at end of file +} diff --git a/cdn/versions/3.20.2/tokens.json b/cdn/versions/3.20.2/tokens.json index ca13d4de..2f17c118 100644 --- a/cdn/versions/3.20.2/tokens.json +++ b/cdn/versions/3.20.2/tokens.json @@ -245,4 +245,4 @@ "typo-scale-4x": 64 }, "version": "3.20.2" -} \ No newline at end of file +} diff --git a/cdn/versions/3.20.3/tokens.json b/cdn/versions/3.20.3/tokens.json index cbbfc10f..05e86b3a 100644 --- a/cdn/versions/3.20.3/tokens.json +++ b/cdn/versions/3.20.3/tokens.json @@ -245,4 +245,4 @@ "typo-scale-4x": 64 }, "version": "3.20.3" -} \ No newline at end of file +} diff --git a/cdn/versions/3.21.0/tokens.json b/cdn/versions/3.21.0/tokens.json index 224b3e6a..47b07ce8 100644 --- a/cdn/versions/3.21.0/tokens.json +++ b/cdn/versions/3.21.0/tokens.json @@ -246,4 +246,4 @@ "typo-scale-4x": 64 }, "version": "3.21.0" -} \ No newline at end of file +} diff --git a/cdn/versions/3.21.1/tokens.json b/cdn/versions/3.21.1/tokens.json index a4b84883..7ebe7dd7 100644 --- a/cdn/versions/3.21.1/tokens.json +++ b/cdn/versions/3.21.1/tokens.json @@ -246,4 +246,4 @@ "typo-scale-4x": 64 }, "version": "3.21.1" -} \ No newline at end of file +} diff --git a/ci/createCdnAssets.js b/ci/createCdnAssets.js index 3f4e84cb..fb758600 100644 --- a/ci/createCdnAssets.js +++ b/ci/createCdnAssets.js @@ -3,8 +3,7 @@ const shell = require('shelljs'); const argv = require('minimist'); const simpleGit = require('simple-git'); -require('dotenv') - .config(); +require('dotenv').config(); const git = simpleGit(); @@ -13,14 +12,14 @@ const config = { cdnFolder: 'cdn', cdnVersionsFile: 'versions.json', tokensFileName: 'tokens.json', - tokensSourcePath: './dist/js/' + tokensSourcePath: './dist/js/', }; const generateTokensFile = (version, sourceFile, targetFile) => { const tokenContent = fs.readFileSync(sourceFile); const outputRaw = { tokens: JSON.parse(tokenContent), - version + version, }; const output = JSON.stringify(outputRaw, null, 2); @@ -71,9 +70,8 @@ const createVersionsFile = (archiveDir) => { fileContent[file] = { tokens: `${rootPath}/${config.tokensFileName}`, - url: rootPath + url: rootPath, }; - }); fs.writeFileSync(`./${config.cdnFolder}/${config.cdnVersionsFile}`, JSON.stringify(fileContent)); @@ -95,7 +93,9 @@ const createIndexHtmlPage = () => {

Every release has a folder containing a file with all the design token declarations.

-

There is a JSON-File containing all the versions along with the corresponding urls to the tokens.json file: tokens.json

+

There is a JSON-File containing all the versions along with the corresponding urls to the tokens.json file: tokens.json

Directories

@@ -105,18 +105,18 @@ const createIndexHtmlPage = () => {

Versions

@@ -176,11 +176,10 @@ const createIndexHtmlPage = () => { await git.add(`${cdnDir}/*`); await git.commit(`chore: add CDN assets for version ${version} [skip ci]`); await git.push('origin', 'master', { - '--force': true + '--force': true, }); console.log('-->> Generate CDN Assets: generated and pushed assets to git'); - } catch (error) { console.log(`-->> Generate CDN Assets error: ${error}`); shell.exit(0); diff --git a/ci/getTravisCommit.js b/ci/getTravisCommit.js index 6a1d71bb..cdf2d7d0 100644 --- a/ci/getTravisCommit.js +++ b/ci/getTravisCommit.js @@ -1,28 +1,25 @@ const axios = require('axios'); -require('dotenv') - .config(); +require('dotenv').config(); module.exports = async (id) => { try { - const requestHeaders = { - 'Accept': 'application/json', - 'Authorization': `token ${process.env.TRAVIS_TOKEN}`, + Accept: 'application/json', + Authorization: `token ${process.env.TRAVIS_TOKEN}`, 'Content-Type': 'application/json', - 'Travis-API-Version': '3' + 'Travis-API-Version': '3', }; const requestConfig = { headers: requestHeaders, method: 'GET', - url: `https://api.travis-ci.com/build/${id}` + url: `https://api.travis-ci.com/build/${id}`, }; const travisResponse = await axios.request(requestConfig); return travisResponse.data.commit.message; - } catch (e) { console.log('-->> Error while getting commit message from Travis'); console.log(e); diff --git a/ci/triggerLyneComponents.js b/ci/triggerLyneComponents.js index b1b41319..9bbdaf01 100644 --- a/ci/triggerLyneComponents.js +++ b/ci/triggerLyneComponents.js @@ -3,8 +3,7 @@ const argv = require('minimist'); const getCommit = require('./getTravisCommit'); const triggerTravis = require('lyne-helper-trigger-travis'); -require('dotenv') - .config(); +require('dotenv').config(); (async () => { const args = argv(process.argv.slice(2)); @@ -22,12 +21,11 @@ require('dotenv') const commitMessage = await getCommit(jobId); try { - await triggerTravis({ branchName: 'master', message: `${commitMessage} (triggered from design tokens build)`, travisToken: process.env.TRAVIS_TOKEN, - travisUrl: 'https://api.travis-ci.com/repo/lyne-design-system%2Flyne-components/requests' + travisUrl: 'https://api.travis-ci.com/repo/lyne-design-system%2Flyne-components/requests', }); shell.exit(0); diff --git a/commitlint.config.js b/commitlint.config.js index a3ca297c..75a38b11 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,4 +1,4 @@ module.exports = { extends: ['@commitlint/config-conventional'], - parserPreset: 'conventional-changelog-conventionalcommits' + parserPreset: 'conventional-changelog-conventionalcommits', }; diff --git a/config.js b/config.js index 044f3bcc..6f177cb5 100644 --- a/config.js +++ b/config.js @@ -7,120 +7,90 @@ module.exports = { destination: 'variables--root.css', format: 'css/variables', options: { - selector: ':root' - } + selector: ':root', + }, }, { destination: 'variables--host.css', format: 'css/variables', options: { - selector: ':host' - } - } + selector: ':host', + }, + }, ], transformGroup: 'css', - transforms: [ - 'attribute/cti', - 'name/cti/kebab', - 'time/seconds', - 'content/icon', - 'color/css' - ] + transforms: ['attribute/cti', 'name/cti/kebab', 'time/seconds', 'content/icon', 'color/css'], }, js: { buildPath: 'dist/js/', files: [ { destination: 'tokens.es6.js', - format: 'javascript/es6' + format: 'javascript/es6', }, { destination: 'tokens.commonjs.js', - format: 'custom/format/javascript/module' + format: 'custom/format/javascript/module', }, { destination: 'tokens.json', - format: 'json/flat' - } + format: 'json/flat', + }, ], transformGroup: 'js', - transforms: [ - 'attribute/cti', - 'name/cti/pascal', - 'color/css' - ] + transforms: ['attribute/cti', 'name/cti/pascal', 'color/css'], }, jsonFlat: { buildPath: 'dist/js/', files: [ { destination: 'tokens.json', - format: 'json/flat' - } + format: 'json/flat', + }, ], transformGroup: 'js', - transforms: [ - 'attribute/cti', - 'name/cti/kebab', - 'color/css' - ] + transforms: ['attribute/cti', 'name/cti/kebab', 'color/css'], }, jsonRaw: { buildPath: 'dist/js/', files: [ { destination: 'tokens-raw.json', - format: 'json/extended' - } + format: 'json/extended', + }, ], transformGroup: 'js', - transforms: [ - 'attribute/cti', - 'name/cti/kebab', - 'color/css' - ] + transforms: ['attribute/cti', 'name/cti/kebab', 'color/css'], }, less: { buildPath: 'dist/less/', files: [ { destination: 'variables.less', - format: 'less/variables' - } + format: 'less/variables', + }, ], transformGroup: 'less', - transforms: [ - 'attribute/cti', - 'name/cti/kebab', - 'time/seconds', - 'content/icon', - 'color/css' - ] + transforms: ['attribute/cti', 'name/cti/kebab', 'time/seconds', 'content/icon', 'color/css'], }, scss: { buildPath: 'dist/scss/', files: [ { destination: 'variables.scss', - format: 'custom/format/scss' + format: 'custom/format/scss', }, { destination: 'variables_css--placeholder.scss', format: 'css/variables', options: { - selector: '%lyne-design-tokens-css-variables' - } - } + selector: '%lyne-design-tokens-css-variables', + }, + }, ], transformGroup: 'scss', - transforms: [ - 'attribute/cti', - 'name/cti/kebab', - 'time/seconds', - 'content/icon', - 'color/css' - ] - } + transforms: ['attribute/cti', 'name/cti/kebab', 'time/seconds', 'content/icon', 'color/css'], + }, }, - source: ['designTokens'] + source: ['designTokens'], }; diff --git a/designTokens/animation.js b/designTokens/animation.js index 065e1dd9..3d3ce0a5 100644 --- a/designTokens/animation.js +++ b/designTokens/animation.js @@ -5,27 +5,27 @@ const duration = (value) => `${value * Number(baseDuration)}ms`; module.exports = { duration: { '-1x': { - value: duration(1) + value: duration(1), }, '-2x': { - value: duration(2) + value: duration(2), }, '-3x': { - value: duration(3) + value: duration(3), }, '-4x': { - value: duration(4) + value: duration(4), }, '-5x': { - value: duration(5) + value: duration(5), }, '-6x': { - value: duration(6) - } + value: duration(6), + }, }, easing: { - value: 'cubic-bezier(.47, .1, 1, .63)' - } + value: 'cubic-bezier(.47, .1, 1, .63)', + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/border.js b/designTokens/border.js index 685739b3..d01f843b 100644 --- a/designTokens/border.js +++ b/designTokens/border.js @@ -9,26 +9,26 @@ const borderRadius = (width) => width * Number(baseBorderRadius); module.exports = { width: { '1x': { - value: borderWidth(1) + value: borderWidth(1), }, '2x': { - value: borderWidth(2) - } + value: borderWidth(2), + }, }, radius: { '1x': { - value: borderRadius(1) + value: borderRadius(1), }, '4x': { - value: borderRadius(4) + value: borderRadius(4), }, '8x': { - value: borderRadius(8) + value: borderRadius(8), }, '16x': { - value: borderRadius(16) - } - } + value: borderRadius(16), + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/breakpoint.js b/designTokens/breakpoint.js index 0382bb0c..b9674d91 100644 --- a/designTokens/breakpoint.js +++ b/designTokens/breakpoint.js @@ -3,60 +3,60 @@ module.exports = { zero: { min: { - value: 0 + value: 0, }, max: { - value: 359 - } + value: 359, + }, }, micro: { min: { - value: 360 + value: 360, }, max: { - value: 599 - } + value: 599, + }, }, small: { min: { - value: 600 + value: 600, }, max: { - value: 839 - } + value: 839, + }, }, medium: { min: { - value: 840 + value: 840, }, max: { - value: 1023 - } + value: 1023, + }, }, large: { min: { - value: 1024 + value: 1024, }, max: { - value: 1279 - } + value: 1279, + }, }, wide: { min: { - value: 1280 + value: 1280, }, max: { - value: 1439 - } + value: 1439, + }, }, ultra: { min: { - value: 1440 + value: 1440, }, max: { - value: 2579 - } - } + value: 2579, + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/color.js b/designTokens/color.js index 72c878ca..44319cc5 100644 --- a/designTokens/color.js +++ b/designTokens/color.js @@ -3,195 +3,195 @@ module.exports = { black: { default: { - value: 'rgba(0,0,0,1)' + value: 'rgba(0,0,0,1)', }, alpha: { 0: { - value: 'rgba(0,0,0,0)' + value: 'rgba(0,0,0,0)', }, 10: { - value: 'rgba(0,0,0,.1)' + value: 'rgba(0,0,0,.1)', }, 20: { - value: 'rgba(0,0,0,.2)' + value: 'rgba(0,0,0,.2)', }, 50: { - value: 'rgba(0,0,0,.5)' + value: 'rgba(0,0,0,.5)', }, 60: { - value: 'rgba(0,0,0,.6)' + value: 'rgba(0,0,0,.6)', }, 70: { - value: 'rgba(0,0,0,.7)' - } - } + value: 'rgba(0,0,0,.7)', + }, + }, }, midnight: { default: { - value: 'rgba(21,21,21,1)' - } + value: 'rgba(21,21,21,1)', + }, }, charcoal: { default: { - value: 'rgba(33,33,33,1)' - } + value: 'rgba(33,33,33,1)', + }, }, iron: { default: { - value: 'rgba(68,68,68,1)' - } + value: 'rgba(68,68,68,1)', + }, }, anthracite: { default: { - value: 'rgba(90,90,90,1)' - } + value: 'rgba(90,90,90,1)', + }, }, granite: { default: { - value: 'rgba(104,104,104,1)' - } + value: 'rgba(104,104,104,1)', + }, }, metal: { default: { - value: 'rgba(118,118,118,1)' + value: 'rgba(118,118,118,1)', }, alpha: { 0: { - value: 'rgba(118,118,118,0)' + value: 'rgba(118,118,118,0)', }, 20: { - value: 'rgba(118,118,118,.2)' - } - } + value: 'rgba(118,118,118,.2)', + }, + }, }, smoke: { default: { - value: 'rgba(141,141,141,1)' + value: 'rgba(141,141,141,1)', }, alpha: { 0: { - value: 'rgba(141,141,141,0)' + value: 'rgba(141,141,141,0)', }, 5: { - value: 'rgba(141,141,141,.05)' + value: 'rgba(141,141,141,.05)', }, 10: { - value: 'rgba(141,141,141,.1)' + value: 'rgba(141,141,141,.1)', }, 20: { - value: 'rgba(141,141,141,.2)' - } - } + value: 'rgba(141,141,141,.2)', + }, + }, }, storm: { default: { - value: 'rgba(168,168,168,1)' - } + value: 'rgba(168,168,168,1)', + }, }, graphite: { default: { - value: 'rgba(183,183,183,1)' - } + value: 'rgba(183,183,183,1)', + }, }, cement: { default: { - value: 'rgba(189,189,189,1)' + value: 'rgba(189,189,189,1)', }, alpha: { 0: { - value: 'rgba(189,189,189,0)' + value: 'rgba(189,189,189,0)', }, 20: { - value: 'rgba(189,189,189,.2)' - } - } + value: 'rgba(189,189,189,.2)', + }, + }, }, platinum: { default: { - value: 'rgba(205,205,205,1)' + value: 'rgba(205,205,205,1)', }, alpha: { 0: { - value: 'rgba(205,205,205,0)' + value: 'rgba(205,205,205,0)', }, 20: { - value: 'rgba(205,205,205,.2)' - } - } + value: 'rgba(205,205,205,.2)', + }, + }, }, aluminium: { default: { - value: 'rgba(210,210,210,1)' - } + value: 'rgba(210,210,210,1)', + }, }, silver: { default: { - value: 'rgba(220,220,220,1)' - } + value: 'rgba(220,220,220,1)', + }, }, cloud: { default: { - value: 'rgba(229,229,229,1)' - } + value: 'rgba(229,229,229,1)', + }, }, milk: { default: { - value: 'rgba(246,246,246,1)' - } + value: 'rgba(246,246,246,1)', + }, }, red: { default: { - value: 'rgba(235,0,0,1)' + value: 'rgba(235,0,0,1)', }, alpha: { 0: { - value: 'rgba(235,0,0,0)' + value: 'rgba(235,0,0,0)', }, 20: { - value: 'rgba(235,0,0,.2)' - } - } + value: 'rgba(235,0,0,.2)', + }, + }, }, red125: { default: { - value: 'rgba(198,0,24,1)' + value: 'rgba(198,0,24,1)', }, alpha: { 0: { - value: 'rgba(198,0,24,0)' + value: 'rgba(198,0,24,0)', }, 20: { - value: 'rgba(198,0,24,.2)' - } - } + value: 'rgba(198,0,24,.2)', + }, + }, }, red150: { default: { - value: 'rgba(162,0,19,1)' - } + value: 'rgba(162,0,19,1)', + }, }, white: { default: { - value: 'rgba(255,255,255,1)' + value: 'rgba(255,255,255,1)', }, alpha: { 0: { - value: 'rgba(255,255,255,0)' + value: 'rgba(255,255,255,0)', }, 20: { - value: 'rgba(255,255,255,.5)' + value: 'rgba(255,255,255,.5)', }, 50: { - value: 'rgba(255,255,255,.5)' + value: 'rgba(255,255,255,.5)', }, 60: { - value: 'rgba(255,255,255,.6)' + value: 'rgba(255,255,255,.6)', }, 70: { - value: 'rgba(255,255,255,.7)' - } - } - } + value: 'rgba(255,255,255,.7)', + }, + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/focus.js b/designTokens/focus.js index 589fd8e0..bce74581 100644 --- a/designTokens/focus.js +++ b/designTokens/focus.js @@ -2,17 +2,17 @@ const attributes = (group) => ({ attributes: { - group - } + group, + }, }); module.exports = { outline: { offset: { value: 3, - ...attributes('focus') - } - } + ...attributes('focus'), + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/index.js b/designTokens/index.js index 061a2c12..06130232 100644 --- a/designTokens/index.js +++ b/designTokens/index.js @@ -8,5 +8,5 @@ module.exports = { shadow: require('./shadow'), size: require('./size'), spacing: require('./spacing'), - typo: require('./typo') + typo: require('./typo'), }; diff --git a/designTokens/layout.js b/designTokens/layout.js index d2906e32..9b718d97 100644 --- a/designTokens/layout.js +++ b/designTokens/layout.js @@ -2,8 +2,8 @@ const attributes = (group) => ({ attributes: { - group - } + group, + }, }); module.exports = { @@ -12,99 +12,99 @@ module.exports = { columns: { zero: { value: 4, - ...attributes('base-grid-columns') + ...attributes('base-grid-columns'), }, micro: { value: 4, - ...attributes('base-grid-columns') + ...attributes('base-grid-columns'), }, small: { value: 4, - ...attributes('base-grid-columns') + ...attributes('base-grid-columns'), }, medium: { value: 8, - ...attributes('base-grid-columns') + ...attributes('base-grid-columns'), }, large: { value: 8, - ...attributes('base-grid-columns') + ...attributes('base-grid-columns'), }, wide: { value: 12, - ...attributes('base-grid-columns') + ...attributes('base-grid-columns'), }, ultra: { value: 12, - ...attributes('base-grid-columns') - } + ...attributes('base-grid-columns'), + }, }, gutter: { responsive: { zero: { value: 16, - ...attributes('base-grid-gutter-responsive') + ...attributes('base-grid-gutter-responsive'), }, micro: { value: 16, - ...attributes('base-grid-gutter-responsive') + ...attributes('base-grid-gutter-responsive'), }, small: { value: 24, - ...attributes('base-grid-gutter-responsive') + ...attributes('base-grid-gutter-responsive'), }, medium: { value: 24, - ...attributes('base-grid-gutter-responsive') + ...attributes('base-grid-gutter-responsive'), }, large: { value: 32, - ...attributes('base-grid-gutter-responsive') + ...attributes('base-grid-gutter-responsive'), }, wide: { value: 32, - ...attributes('base-grid-gutter-responsive') + ...attributes('base-grid-gutter-responsive'), }, ultra: { value: 32, - ...attributes('base-grid-gutter-responsive') - } - } - } + ...attributes('base-grid-gutter-responsive'), + }, + }, + }, }, offset: { responsive: { zero: { value: 16, - ...attributes('base-offset-responsive') + ...attributes('base-offset-responsive'), }, micro: { value: 20, - ...attributes('base-offset-responsive') + ...attributes('base-offset-responsive'), }, small: { value: 48, - ...attributes('base-offset-responsive') + ...attributes('base-offset-responsive'), }, medium: { value: 56, - ...attributes('base-offset-responsive') + ...attributes('base-offset-responsive'), }, large: { value: 64, - ...attributes('base-offset-responsive') + ...attributes('base-offset-responsive'), }, wide: { value: 72, - ...attributes('base-offset-responsive') + ...attributes('base-offset-responsive'), }, ultra: { value: 124, - ...attributes('base-offset-responsive') - } - } - } - } + ...attributes('base-offset-responsive'), + }, + }, + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/shadow.js b/designTokens/shadow.js index ad17e4eb..ff241241 100644 --- a/designTokens/shadow.js +++ b/designTokens/shadow.js @@ -2,96 +2,152 @@ const attributes = (shadowLevel) => ({ attributes: { - group: shadowLevel - } + group: shadowLevel, + }, }); -const shadowObject = (shadowLevel, x1, y1, blur1, spread1, x2, y2, blur2, spread2, color1, color2, color3, color4) => ({ +const shadowObject = ( + shadowLevel, + x1, + y1, + blur1, + spread1, + x2, + y2, + blur2, + spread2, + color1, + color2, + color3, + color4 +) => ({ shadow: { 1: { offset: { x: { value: x1, - ...attributes(shadowLevel) + ...attributes(shadowLevel), }, y: { value: y1, - ...attributes(shadowLevel) - } + ...attributes(shadowLevel), + }, }, blur: { value: blur1, - ...attributes(shadowLevel) + ...attributes(shadowLevel), }, spread: { value: spread1, - ...attributes(shadowLevel) - } + ...attributes(shadowLevel), + }, }, 2: { offset: { x: { value: x2, - ...attributes(shadowLevel) + ...attributes(shadowLevel), }, y: { value: y2, - ...attributes(shadowLevel) - } + ...attributes(shadowLevel), + }, }, blur: { value: blur2, - ...attributes(shadowLevel) + ...attributes(shadowLevel), }, spread: { value: spread2, - ...attributes(shadowLevel) - } - } + ...attributes(shadowLevel), + }, + }, }, soft: { 1: { color: { value: color1, - ...attributes(shadowLevel) - } + ...attributes(shadowLevel), + }, }, 2: { color: { value: color2, - ...attributes(shadowLevel) - } - } + ...attributes(shadowLevel), + }, + }, }, hard: { 1: { color: { value: color3, - ...attributes(shadowLevel) - } + ...attributes(shadowLevel), + }, }, 2: { color: { value: color4, - ...attributes(shadowLevel) - } - } - } + ...attributes(shadowLevel), + }, + }, + }, }); module.exports = { elevation: { level: { 3: { - ...shadowObject(3, 0, 2, 16, 0, 0, 1, 4, 0, '{color.smoke.alpha.5.value}', '{color.smoke.alpha.10.value}', '{color.smoke.alpha.10.value}', '{color.smoke.alpha.20.value}') + ...shadowObject( + 3, + 0, + 2, + 16, + 0, + 0, + 1, + 4, + 0, + '{color.smoke.alpha.5.value}', + '{color.smoke.alpha.10.value}', + '{color.smoke.alpha.10.value}', + '{color.smoke.alpha.20.value}' + ), }, 5: { - ...shadowObject(5, 0, 4, 32, 0, 0, 1, 8, 0, '{color.smoke.alpha.5.value}', '{color.smoke.alpha.10.value}', '{color.smoke.alpha.10.value}', '{color.smoke.alpha.20.value}') + ...shadowObject( + 5, + 0, + 4, + 32, + 0, + 0, + 1, + 8, + 0, + '{color.smoke.alpha.5.value}', + '{color.smoke.alpha.10.value}', + '{color.smoke.alpha.10.value}', + '{color.smoke.alpha.20.value}' + ), }, 9: { - ...shadowObject(9, 0, 16, 128, 0, 0, 4, 32, 0, '{color.smoke.alpha.5.value}', '{color.smoke.alpha.10.value}', '{color.smoke.alpha.10.value}', '{color.smoke.alpha.20.value}') - } - } - } + ...shadowObject( + 9, + 0, + 16, + 128, + 0, + 0, + 4, + 32, + 0, + '{color.smoke.alpha.5.value}', + '{color.smoke.alpha.10.value}', + '{color.smoke.alpha.10.value}', + '{color.smoke.alpha.20.value}' + ), + }, + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/size.js b/designTokens/size.js index 86a0753c..ba9ffe1f 100644 --- a/designTokens/size.js +++ b/designTokens/size.js @@ -2,8 +2,8 @@ const attributes = (group) => ({ attributes: { - group - } + group, + }, }); module.exports = { @@ -14,111 +14,111 @@ module.exports = { height: { zero: { value: 44, - ...attributes('form') + ...attributes('form'), }, micro: { value: 44, - ...attributes('form') + ...attributes('form'), }, small: { value: 44, - ...attributes('form') + ...attributes('form'), }, medium: { value: 48, - ...attributes('form') + ...attributes('form'), }, large: { value: 48, - ...attributes('form') + ...attributes('form'), }, wide: { value: 48, - ...attributes('form') + ...attributes('form'), }, ultra: { value: 48, - ...attributes('form') - } - } - } + ...attributes('form'), + }, + }, + }, }, l: { min: { height: { zero: { value: 48, - ...attributes('form') + ...attributes('form'), }, micro: { value: 48, - ...attributes('form') + ...attributes('form'), }, small: { value: 48, - ...attributes('form') + ...attributes('form'), }, medium: { value: 56, - ...attributes('form') + ...attributes('form'), }, large: { value: 56, - ...attributes('form') + ...attributes('form'), }, wide: { value: 56, - ...attributes('form') + ...attributes('form'), }, ultra: { value: 56, - ...attributes('form') - } - } - } - } - } + ...attributes('form'), + }, + }, + }, + }, + }, }, touch: { min: { value: 44, - ...attributes('touch') - } + ...attributes('touch'), + }, }, icon: { ui: { small: { value: 24, - ...attributes('icon') + ...attributes('icon'), }, medium: { value: 36, - ...attributes('icon') + ...attributes('icon'), }, large: { value: 48, - ...attributes('icon') - } + ...attributes('icon'), + }, }, timetable: { - 'attribute': { + attribute: { value: 16, - ...attributes('icon') + ...attributes('icon'), }, 'him-cus': { value: 16, - ...attributes('icon') + ...attributes('icon'), }, 'product-brand': { value: 20, - ...attributes('icon') - } + ...attributes('icon'), + }, }, pictograms: { value: 24, - ...attributes('icon') - } - } + ...attributes('icon'), + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/spacing.js b/designTokens/spacing.js index 594b4d71..bb202870 100644 --- a/designTokens/spacing.js +++ b/designTokens/spacing.js @@ -5,237 +5,237 @@ const spacing = (value) => value * Number(baseSpacing); module.exports = { fixed: { '-1x': { - value: spacing(1) + value: spacing(1), }, '-2x': { - value: spacing(2) + value: spacing(2), }, '-3x': { - value: spacing(3) + value: spacing(3), }, '-4x': { - value: spacing(4) + value: spacing(4), }, '-5x': { - value: spacing(5) + value: spacing(5), }, '-6x': { - value: spacing(6) + value: spacing(6), }, '-8x': { - value: spacing(8) + value: spacing(8), }, '-10x': { - value: spacing(10) + value: spacing(10), }, '-12x': { - value: spacing(12) + value: spacing(12), }, '-14x': { - value: spacing(14) + value: spacing(14), }, '-16x': { - value: spacing(16) + value: spacing(16), }, '-18x': { - value: spacing(18) + value: spacing(18), }, '-20x': { - value: spacing(20) + value: spacing(20), }, '-24x': { - value: spacing(24) + value: spacing(24), }, '-30x': { - value: spacing(30) - } + value: spacing(30), + }, }, responsive: { xxxs: { zero: { - value: spacing(3) + value: spacing(3), }, micro: { - value: spacing(3) + value: spacing(3), }, small: { - value: spacing(3) + value: spacing(3), }, medium: { - value: spacing(4) + value: spacing(4), }, large: { - value: spacing(4) + value: spacing(4), }, wide: { - value: spacing(4) + value: spacing(4), }, ultra: { - value: spacing(4) - } + value: spacing(4), + }, }, xxs: { zero: { - value: spacing(4) + value: spacing(4), }, micro: { - value: spacing(4) + value: spacing(4), }, small: { - value: spacing(4) + value: spacing(4), }, medium: { - value: spacing(6) + value: spacing(6), }, large: { - value: spacing(6) + value: spacing(6), }, wide: { - value: spacing(6) + value: spacing(6), }, ultra: { - value: spacing(6) - } + value: spacing(6), + }, }, xs: { zero: { - value: spacing(5) + value: spacing(5), }, micro: { - value: spacing(5) + value: spacing(5), }, small: { - value: spacing(5) + value: spacing(5), }, medium: { - value: spacing(6) + value: spacing(6), }, large: { - value: spacing(6) + value: spacing(6), }, wide: { - value: spacing(6) + value: spacing(6), }, ultra: { - value: spacing(6) - } + value: spacing(6), + }, }, s: { zero: { - value: spacing(6) + value: spacing(6), }, micro: { - value: spacing(6) + value: spacing(6), }, small: { - value: spacing(6) + value: spacing(6), }, medium: { - value: spacing(8) + value: spacing(8), }, large: { - value: spacing(8) + value: spacing(8), }, wide: { - value: spacing(8) + value: spacing(8), }, ultra: { - value: spacing(8) - } + value: spacing(8), + }, }, m: { zero: { - value: spacing(8) + value: spacing(8), }, micro: { - value: spacing(8) + value: spacing(8), }, small: { - value: spacing(8) + value: spacing(8), }, medium: { - value: spacing(10) + value: spacing(10), }, large: { - value: spacing(10) + value: spacing(10), }, wide: { - value: spacing(12) + value: spacing(12), }, ultra: { - value: spacing(12) - } + value: spacing(12), + }, }, l: { zero: { - value: spacing(8) + value: spacing(8), }, micro: { - value: spacing(8) + value: spacing(8), }, small: { - value: spacing(10) + value: spacing(10), }, medium: { - value: spacing(12) + value: spacing(12), }, large: { - value: spacing(14) + value: spacing(14), }, wide: { - value: spacing(14) + value: spacing(14), }, ultra: { - value: spacing(16) - } + value: spacing(16), + }, }, xl: { zero: { - value: spacing(8) + value: spacing(8), }, micro: { - value: spacing(8) + value: spacing(8), }, small: { - value: spacing(12) + value: spacing(12), }, medium: { - value: spacing(16) + value: spacing(16), }, large: { - value: spacing(20) + value: spacing(20), }, wide: { - value: spacing(20) + value: spacing(20), }, ultra: { - value: spacing(24) - } + value: spacing(24), + }, }, xxl: { zero: { - value: spacing(12) + value: spacing(12), }, micro: { - value: spacing(12) + value: spacing(12), }, small: { - value: spacing(18) + value: spacing(18), }, medium: { - value: spacing(20) + value: spacing(20), }, large: { - value: spacing(24) + value: spacing(24), }, wide: { - value: spacing(24) + value: spacing(24), }, ultra: { - value: spacing(30) - } - } - } + value: spacing(30), + }, + }, + }, }; /* eslint-enable sort-keys */ diff --git a/designTokens/typo.js b/designTokens/typo.js index 836aeae3..386e68d5 100644 --- a/designTokens/typo.js +++ b/designTokens/typo.js @@ -5,79 +5,78 @@ const typoSpacing = (value) => value * Number(baseTypoSpacing); module.exports = { fontFamilyFallback: { - value: '"Helvetica Neue", Helvetica, Arial, sans-serif' + value: '"Helvetica Neue", Helvetica, Arial, sans-serif', }, typeFace: { sbbLight: { - value: '"SBBWeb Light", {typo.fontFamilyFallback.value}' + value: '"SBBWeb Light", {typo.fontFamilyFallback.value}', }, sbbRoman: { - value: '"SBBWeb Roman", {typo.fontFamilyFallback.value}' + value: '"SBBWeb Roman", {typo.fontFamilyFallback.value}', }, sbbBold: { - value: '"SBBWeb Bold", {typo.fontFamilyFallback.value}' + value: '"SBBWeb Bold", {typo.fontFamilyFallback.value}', }, i18n: { traditionalChinese: { - value: '"Example for possible i18n structure"' - } - } + value: '"Example for possible i18n structure"', + }, + }, }, letterSpacing: { titles: { - value: '0' + value: '0', }, bodyText: { - value: '0.03em' - } + value: '0.03em', + }, }, lineHeight: { titles: { - value: '1.3' + value: '1.3', }, bodyText: { - value: '1.7' - } + value: '1.7', + }, }, scale: { '0-75x': { - value: typoSpacing(0.75) + value: typoSpacing(0.75), }, '0-8125x': { - value: typoSpacing(0.8125) + value: typoSpacing(0.8125), }, '0-875x': { - value: typoSpacing(0.875) + value: typoSpacing(0.875), }, - 'default': { - value: typoSpacing(1) + default: { + value: typoSpacing(1), }, '1-125x': { - value: typoSpacing(1.125) + value: typoSpacing(1.125), }, '1-25x': { - value: typoSpacing(1.25) + value: typoSpacing(1.25), }, '1-5x': { - value: typoSpacing(1.5) + value: typoSpacing(1.5), }, '2x': { - value: typoSpacing(2) + value: typoSpacing(2), }, '2-5x': { - value: typoSpacing(2.5) + value: typoSpacing(2.5), }, '3x': { - value: typoSpacing(3) + value: typoSpacing(3), }, '3-5x': { - value: typoSpacing(3.5) + value: typoSpacing(3.5), }, '4x': { - value: typoSpacing(4) - } - } + value: typoSpacing(4), + }, + }, }; /* eslint-enable sort-keys */ - diff --git a/package.json b/package.json index 31b1a39c..405fcdf3 100644 --- a/package.json +++ b/package.json @@ -5,13 +5,29 @@ "main": "index.js", "scripts": { "build": "node ./build.js", + "format": "prettier \"**/*\" --write --ignore-unknown", "lint": "npm run lint:yml && npm run lint:js", - "lint:js": "eslint --ext .js", - "lint:yml": "eslint --ext .yml,.yaml", + "lint:js": "eslint \"**/*.{js,ts}\"", + "lint:yml": "eslint \"**/*.{yml,yaml}\"", "semantic-release": "semantic-release", "prepare": "husky install" }, - "dependencies": {}, + "repository": { + "type": "git", + "url": "git+https://github.com/lyne-design-system/lyne-design-tokens.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/lyne-design-system/lyne-design-tokens/issues" + }, + "publishConfig": { + "access": "public" + }, + "homepage": "https://github.com/lyne-design-system/lyne-design-tokens#readme", + "files": [ + "dist/" + ], "devDependencies": { "@commitlint/cli": "^17.0.1", "@commitlint/config-conventional": "~17.0.0", @@ -21,33 +37,32 @@ "axios": "~0.27.2", "dotenv": "~16.0.0", "eslint": "^8.0.1", + "eslint-config-prettier": "^8.5.0", "eslint-plugin-yaml": "^0.5.0", "husky": "~8.0.1", + "lint-staged": "^13.0.1", "lodash": "^4.17.15", - "lyne-helper-eslint-config": "~1.0.1", "lyne-helper-trigger-travis": "~1.0.3", "minimist": "~1.2.5", "netlify-cli": "~10.5.1", + "prettier": "2.7.1", "semantic-release": "~19.0.2", "semantic-release-slack-bot": "^3.0.0", "shelljs": "~0.8.4", "simple-git": "~3.7.1", "style-dictionary": "~3.7.0" }, - "files": [ - "dist/" - ], - "repository": { - "type": "git", - "url": "git+https://github.com/lyne-design-system/lyne-design-tokens.git" - }, - "author": "", - "license": "ISC", - "bugs": { - "url": "https://github.com/lyne-design-system/lyne-design-tokens/issues" - }, - "publishConfig": { - "access": "public" + "prettier": { + "singleQuote": true, + "endOfLine": "lf", + "printWidth": 100 }, - "homepage": "https://github.com/lyne-design-system/lyne-design-tokens#readme" + "lint-staged": { + "*.{js,ts,css,scss,json,md,html,yaml,yml}": [ + "prettier --write" + ], + "*.{js,ts,yaml,yml}": [ + "eslint --fix" + ] + } } diff --git a/yarn.lock b/yarn.lock index b88c84b9..0e008d6a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1632,7 +1632,7 @@ ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== -ansi-escapes@^4.2.1, ansi-escapes@^4.3.1: +ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.1: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== @@ -1900,6 +1900,11 @@ ast-module-types@^3.0.0: resolved "https://registry.yarnpkg.com/ast-module-types/-/ast-module-types-3.0.0.tgz#9a6d8a80f438b6b8fe4995699d700297f398bf81" integrity sha512-CMxMCOCS+4D+DkOQfuZf+vLrSEmY/7xtORwdxs4wtcC1wVgvk2MqFFTwQCFhvWsI4KPU9lcWXPI8DgRiz+xetQ== +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + async@^3.2.3: version "3.2.4" resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" @@ -2577,6 +2582,22 @@ cli-truncate@^0.2.1: slice-ansi "0.0.4" string-width "^1.0.1" +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + +cli-truncate@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" + integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== + dependencies: + slice-ansi "^5.0.0" + string-width "^5.0.0" + cli-width@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" @@ -2676,6 +2697,11 @@ color@^3.1.3: color-convert "^1.9.3" color-string "^1.6.0" +colorette@^2.0.16, colorette@^2.0.17: + version "2.0.19" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" + integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== + colors-option@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/colors-option/-/colors-option-3.0.0.tgz#51f5d0d2b511a01859cdd70eaa9ed43ca4abf108" @@ -2729,7 +2755,7 @@ commander@^8.3.0: resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== -commander@^9.0.0, commander@^9.1.0: +commander@^9.0.0, commander@^9.1.0, commander@^9.3.0: version "9.3.0" resolved "https://registry.yarnpkg.com/commander/-/commander-9.3.0.tgz#f619114a5a2d2054e0d9ff1b31d5ccf89255e26b" integrity sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw== @@ -3672,6 +3698,11 @@ escodegen@^2.0.0: optionalDependencies: source-map "~0.6.1" +eslint-config-prettier@^8.5.0: + version "8.5.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" + integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== + eslint-plugin-yaml@^0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/eslint-plugin-yaml/-/eslint-plugin-yaml-0.5.0.tgz#8c79d9d6389b67cbcf58ef6f970c4c086665a63a" @@ -3819,7 +3850,7 @@ execa@^5.0.0, execa@^5.1.1: signal-exit "^3.0.3" strip-final-newline "^2.0.0" -execa@^6.0.0: +execa@^6.0.0, execa@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20" integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA== @@ -6030,11 +6061,35 @@ libnpmversion@^3.0.1: proc-log "^2.0.0" semver "^7.3.7" +lilconfig@2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25" + integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg== + lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +lint-staged@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.0.1.tgz#899e78065ab29b88fdd922482411121664ef66be" + integrity sha512-Ykaf4QTi0a02BF7cnq7JIPGOJxH4TkNMWhSlJdH9wOekd0X+gog47Jfh/0L31DqZe5AiydLGC7LkPqpaNm+Kvg== + dependencies: + cli-truncate "^3.1.0" + colorette "^2.0.17" + commander "^9.3.0" + debug "^4.3.4" + execa "^6.1.0" + lilconfig "2.0.5" + listr2 "^4.0.5" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-inspect "^1.12.2" + pidtree "^0.6.0" + string-argv "^0.3.1" + yaml "^2.1.1" + listr-silent-renderer@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" @@ -6064,6 +6119,20 @@ listr-verbose-renderer@^0.5.0: date-fns "^1.27.2" figures "^2.0.0" +listr2@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.5.tgz#9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5" + integrity sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA== + dependencies: + cli-truncate "^2.1.0" + colorette "^2.0.16" + log-update "^4.0.0" + p-map "^4.0.0" + rfdc "^1.3.0" + rxjs "^7.5.5" + through "^2.3.8" + wrap-ansi "^7.0.0" + listr@^0.14.3: version "0.14.3" resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" @@ -6260,6 +6329,16 @@ log-update@^2.3.0: cli-cursor "^2.0.0" wrap-ansi "^3.0.1" +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + log-update@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/log-update/-/log-update-5.0.1.tgz#9e928bf70cb183c1f0c9e91d9e6b7115d597ce09" @@ -6326,11 +6405,6 @@ luxon@^1.28.0: resolved "https://registry.yarnpkg.com/luxon/-/luxon-1.28.0.tgz#e7f96daad3938c06a62de0fb027115d251251fbf" integrity sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ== -lyne-helper-eslint-config@~1.0.1: - version "1.0.7" - resolved "https://registry.yarnpkg.com/lyne-helper-eslint-config/-/lyne-helper-eslint-config-1.0.7.tgz#1eb0203ae372bcbcee8b069dcc2e15d6448f2a10" - integrity sha512-iPpMWyiMNzzdN2iQT0HWplD3DstQeoZkYEa9dBdPBT4hBGuG1YXwYhJnK1rrW4auN4iXfTtV0ZnuypyU9PrAGw== - lyne-helper-trigger-travis@~1.0.3: version "1.0.6" resolved "https://registry.yarnpkg.com/lyne-helper-trigger-travis/-/lyne-helper-trigger-travis-1.0.6.tgz#cc04cc0a6c10a3d5c3e7693a578d164cf7d3d183" @@ -6708,7 +6782,7 @@ micromatch@^3.1.10: snapdragon "^0.8.1" to-regex "^3.0.2" -micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4: +micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== @@ -7642,7 +7716,7 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" -object-inspect@^1.9.0: +object-inspect@^1.12.2, object-inspect@^1.9.0: version "1.12.2" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== @@ -8244,6 +8318,11 @@ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1, picomatch@^2.3.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +pidtree@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" + integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== + pify@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" @@ -8347,6 +8426,11 @@ prepend-http@^2.0.0: resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== +prettier@2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" + integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== + pretty-format@^25.5.0: version "25.5.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" @@ -8931,6 +9015,13 @@ rxjs@^6.3.3, rxjs@^6.4.0, rxjs@^6.6.2: dependencies: tslib "^1.9.0" +rxjs@^7.5.5: + version "7.5.5" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.5.tgz#2ebad89af0f560f460ad5cc4213219e1f7dd4e9f" + integrity sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw== + dependencies: + tslib "^2.1.0" + safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" @@ -9199,6 +9290,24 @@ slice-ansi@0.0.4: resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw== +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + slice-ansi@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" @@ -9480,6 +9589,11 @@ strict-uri-encode@^1.0.0: resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== +string-argv@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" + integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== + string-similarity@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/string-similarity/-/string-similarity-4.0.4.tgz#42d01ab0b34660ea8a018da8f56a3309bb8b2a5b" @@ -9999,7 +10113,7 @@ tslib@^1.8.1, tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.3: +tslib@^2.0.3, tslib@^2.1.0: version "2.4.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== @@ -10470,6 +10584,15 @@ wrap-ansi@^3.0.1: string-width "^2.1.1" strip-ansi "^4.0.0" +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -10541,6 +10664,11 @@ yaml@^1.10.0: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== +yaml@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.1.tgz#1e06fb4ca46e60d9da07e4f786ea370ed3c3cfec" + integrity sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw== + yargs-parser@^20.2.2, yargs-parser@^20.2.3: version "20.2.9" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"