Skip to content

Commit

Permalink
deps: bump versions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
h-enk committed Jan 14, 2022
1 parent f5d1bae commit e2b4ab2
Show file tree
Hide file tree
Showing 8 changed files with 1,891 additions and 3,459 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules
public
resources
# Local Netlify folder
.netlify
TODO
.hugo_build.lock
16 changes: 15 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
{
"extends": "stylelint-config-standard",
"extends": "stylelint-config-standard-scss",
"rules": {
"no-empty-source": null,
"string-quotes": "double",
"scss/comment-no-empty": null,
"max-line-length": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-empty-line-before": null,
"color-function-notation": null,
"alpha-value-notation": null,
"selector-id-pattern": null,
"selector-class-pattern": null,
"scss/no-global-function-names": null,
"number-max-precision": null,
"hue-degree-notation": null,
"value-no-vendor-prefix": null,
"property-no-vendor-prefix": null,
"at-rule-no-unknown": [
true,
{
Expand Down
12 changes: 6 additions & 6 deletions assets/scss/common/_fonts.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* jost-regular - latin */
@font-face {
font-family: "Jost";
font-family: Jost;
font-style: normal;
font-weight: 400;
font-display: swap;
Expand All @@ -12,7 +12,7 @@

/* jost-500 - latin */
@font-face {
font-family: "Jost";
font-family: Jost;
font-style: normal;
font-weight: 500;
font-display: swap;
Expand All @@ -24,7 +24,7 @@

/* jost-700 - latin */
@font-face {
font-family: "Jost";
font-family: Jost;
font-style: normal;
font-weight: 700;
font-display: swap;
Expand All @@ -36,7 +36,7 @@

/* jost-italic - latin */
@font-face {
font-family: "Jost";
font-family: Jost;
font-style: italic;
font-weight: 400;
font-display: swap;
Expand All @@ -48,7 +48,7 @@

/* jost-500italic - latin */
@font-face {
font-family: "Jost";
font-family: Jost;
font-style: italic;
font-weight: 500;
font-display: swap;
Expand All @@ -60,7 +60,7 @@

/* jost-700italic - latin */
@font-face {
font-family: "Jost";
font-family: Jost;
font-style: italic;
font-weight: 700;
font-display: swap;
Expand Down
1 change: 1 addition & 0 deletions assets/scss/common/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ $black: #000;
$yellow: #ffe000;
$black: #1d2d35;
$beige: #fbf7f0;

// $red: #e55235;
$purple: #5d2f86;
$brown: #aa9c84;
Expand Down
6 changes: 3 additions & 3 deletions assets/scss/layouts/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
.page-links h3 {
text-transform: uppercase;
font-size: $font-size-base;
margin: 1.25rem 0 0.5rem 0;
padding: 1.5rem 0 0 0;
margin: 1.25rem 0 0.5rem;
padding: 1.5rem 0 0;
}

@include media-breakpoint-up(lg) {
.docs-links h3,
.page-links h3 {
margin: 1.125rem 1.5rem 0.75rem 0;
padding: 1.375rem 0 0 0;
padding: 1.375rem 0 0;
}
}

Expand Down
4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
functions = "functions"

[build.environment]
NODE_VERSION = "16.9.1"
NPM_VERSION = "7.21.1"
NODE_VERSION = "16.13.1"
NPM_VERSION = "8.1.2"

[context.production]
command = "npm run build"
Expand Down
Loading

0 comments on commit e2b4ab2

Please sign in to comment.