-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: update all dependencies to the latest major
- Loading branch information
1 parent
c1cae3a
commit b54f715
Showing
17 changed files
with
3,339 additions
and
1,983 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module.exports = { | ||
"reject": [], | ||
filterResults: (name, { upgradedVersionSemver }) => { | ||
if ( | ||
name === '@types/node' && parseInt(upgradedVersionSemver?.major) >= 22 || | ||
name === 'eslint' && parseInt(upgradedVersionSemver?.major) >= 9 || | ||
name === '@typescript-eslint/eslint-plugin' && parseInt(upgradedVersionSemver?.major) >= 8 || | ||
name === '@typescript-eslint/parser' && parseInt(upgradedVersionSemver?.major) >= 8 || | ||
name === 'nock' && parseInt(upgradedVersionSemver?.major) >= 14 | ||
) { | ||
return false | ||
} | ||
|
||
return true | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,22 +34,22 @@ | |
}, | ||
"author": "Marco Montalbano <[email protected]>", | ||
"devDependencies": { | ||
"@types/node": "~20.16.3", | ||
"@types/node": "~20.17.19", | ||
"@typescript-eslint/eslint-plugin": "^7.18.0", | ||
"@typescript-eslint/parser": "^7.18.0", | ||
"@vitest/coverage-istanbul": "^2.0.5", | ||
"eslint": "^8.57.0", | ||
"@vitest/coverage-istanbul": "^3.0.7", | ||
"eslint": "^8.57.1", | ||
"eslint-config-airbnb": "~19.0.4", | ||
"eslint-plugin-import": "~2.29.1", | ||
"husky": "^9.1.5", | ||
"lerna": "^8.1.8", | ||
"eslint-plugin-import": "~2.31.0", | ||
"husky": "^9.1.7", | ||
"lerna": "^8.2.0", | ||
"lerna-changelog": "~2.2.0", | ||
"lint-staged": "~15.2.10", | ||
"lint-staged": "~15.4.3", | ||
"ls-engines": "^0.9.3", | ||
"nock": "~13.5.5", | ||
"npm-check-updates": "^17.1.1", | ||
"typescript": "~5.5.4", | ||
"vitest": "^2.0.5" | ||
"nock": "v13.5.6", | ||
"npm-check-updates": "^17.1.15", | ||
"typescript": "~5.8.2", | ||
"vitest": "^3.0.7" | ||
}, | ||
"engines": { | ||
"node": ">= 18.17" | ||
|
@@ -72,5 +72,5 @@ | |
"PR: New Feature :rocket:": ":rocket: New Feature" | ||
} | ||
}, | ||
"packageManager": "yarn@4.4.1" | ||
"packageManager": "yarn@4.6.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,46 @@ | ||
@use "../output/figma-styles/variables"; | ||
|
||
|
||
// just using variables from the exported Figma Styles | ||
|
||
.color-1 { background: $color-1 } | ||
.color-1-lighter { background: $color-1-lighter } | ||
.color-2 { background: $color-2 } | ||
.color-3 { background: $color-3 } | ||
.color-4 { background: $color-4 } | ||
.color-alpha-50 { background: $color-alpha-50 } | ||
.color-figma-gradient { background: $color-figma-gradient } | ||
.color-figma-gradient-10 { background: $color-figma-gradient-10 } | ||
.color-linear-gradient { background: $color-linear-gradient } | ||
.color-linear-gradient-alpha { background: $color-linear-gradient-alpha } | ||
.color-multi-gradient { background: $color-multi-gradient } | ||
.inner-shadow { box-shadow: $inner-shadow } | ||
.inner-shadow-bottom { box-shadow: $inner-shadow-bottom } | ||
.drop-shadow { box-shadow: $drop-shadow } | ||
.layer-blur { filter: $layer-blur; background: $color-1 } | ||
.multi-shadows { box-shadow: $multi-shadows } | ||
.mixed-effects { box-shadow: $mixed-effects } | ||
.color-1 { background: variables.$color-1 } | ||
.color-1-lighter { background: variables.$color-1-lighter } | ||
.color-2 { background: variables.$color-2 } | ||
.color-3 { background: variables.$color-3 } | ||
.color-4 { background: variables.$color-4 } | ||
.color-alpha-50 { background: variables.$color-alpha-50 } | ||
.color-figma-gradient { background: variables.$color-figma-gradient } | ||
.color-figma-gradient-10 { background: variables.$color-figma-gradient-10 } | ||
.color-linear-gradient { background: variables.$color-linear-gradient } | ||
.color-linear-gradient-alpha { background: variables.$color-linear-gradient-alpha } | ||
.color-multi-gradient { background: variables.$color-multi-gradient } | ||
.inner-shadow { box-shadow: variables.$inner-shadow } | ||
.inner-shadow-bottom { box-shadow: variables.$inner-shadow-bottom } | ||
.drop-shadow { box-shadow: variables.$drop-shadow } | ||
.layer-blur { filter: variables.$layer-blur; background: variables.$color-1 } | ||
.multi-shadows { box-shadow: variables.$multi-shadows } | ||
.mixed-effects { box-shadow: variables.$mixed-effects } | ||
|
||
.h1 { | ||
@each $name, $value in $h1 { | ||
@each $name, $value in variables.$h1 { | ||
#{$name}: $value; | ||
} | ||
} | ||
|
||
.h2 { | ||
@each $name, $value in $h2 { | ||
@each $name, $value in variables.$h2 { | ||
#{$name}: $value; | ||
} | ||
} | ||
|
||
.regular-text { | ||
@each $name, $value in $regular-text { | ||
@each $name, $value in variables.$regular-text { | ||
#{$name}: $value; | ||
} | ||
} | ||
|
||
.deleted-text { | ||
@each $name, $value in $deleted-text { | ||
@each $name, $value in variables.$deleted-text { | ||
#{$name}: $value; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.