Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spirit Tokens & Styles (Spirit Tokens Exporter) #1776

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ packages/**/*.hbs
# Ignore codemods test outputs, because we compare them with generated code which we cannot format
packages/codemods/src/transforms/**/*.output.tsx

# Ignore generated files by supernova
packages/design-tokens/src/**/*

# Ignore built files
packages/design-tokens/scss/**/*
pavelklibani marked this conversation as resolved.
Show resolved Hide resolved

# Yarn Modern
# @see: https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.yarn/plugins
Expand Down
3 changes: 1 addition & 2 deletions packages/design-tokens/src/js/global-tokens/gradients.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* This file was generated by Supernova, don't change manually */
export const gradientBasicOverlay =
'linear-gradient(var(--gradient-angle, 90deg), var(--spirit-color-gradient-basic-overlay-color-01, #fff) 0%, var(--spirit-color-gradient-basic-overlay-color-02, #fff0) 100%)';
export const gradientBasicOverlay = 'linear-gradient(var(--gradient-angle, 90deg), var(--spirit-color-gradient-basic-overlay-color-01, #fff) 0%, var(--spirit-color-gradient-basic-overlay-color-02, #fff0) 100%)';

export const gradients = {
basicOverlay: gradientBasicOverlay,
Expand Down
Loading
Loading