deps: bump versions to latest
This commit is contained in:
parent
f5d1bae87c
commit
e2b4ab23df
|
@ -1,6 +1,5 @@
|
||||||
node_modules
|
node_modules
|
||||||
public
|
public
|
||||||
resources
|
resources
|
||||||
# Local Netlify folder
|
|
||||||
.netlify
|
.netlify
|
||||||
TODO
|
.hugo_build.lock
|
|
@ -1,8 +1,22 @@
|
||||||
{
|
{
|
||||||
"extends": "stylelint-config-standard",
|
"extends": "stylelint-config-standard-scss",
|
||||||
"rules": {
|
"rules": {
|
||||||
"no-empty-source": null,
|
"no-empty-source": null,
|
||||||
"string-quotes": "double",
|
"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": [
|
"at-rule-no-unknown": [
|
||||||
true,
|
true,
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* jost-regular - latin */
|
/* jost-regular - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Jost";
|
font-family: Jost;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
/* jost-500 - latin */
|
/* jost-500 - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Jost";
|
font-family: Jost;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
/* jost-700 - latin */
|
/* jost-700 - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Jost";
|
font-family: Jost;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
/* jost-italic - latin */
|
/* jost-italic - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Jost";
|
font-family: Jost;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
/* jost-500italic - latin */
|
/* jost-500italic - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Jost";
|
font-family: Jost;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
@ -60,7 +60,7 @@
|
||||||
|
|
||||||
/* jost-700italic - latin */
|
/* jost-700italic - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Jost";
|
font-family: Jost;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
|
|
@ -15,6 +15,7 @@ $black: #000;
|
||||||
$yellow: #ffe000;
|
$yellow: #ffe000;
|
||||||
$black: #1d2d35;
|
$black: #1d2d35;
|
||||||
$beige: #fbf7f0;
|
$beige: #fbf7f0;
|
||||||
|
|
||||||
// $red: #e55235;
|
// $red: #e55235;
|
||||||
$purple: #5d2f86;
|
$purple: #5d2f86;
|
||||||
$brown: #aa9c84;
|
$brown: #aa9c84;
|
||||||
|
|
|
@ -39,15 +39,15 @@
|
||||||
.page-links h3 {
|
.page-links h3 {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-size: $font-size-base;
|
font-size: $font-size-base;
|
||||||
margin: 1.25rem 0 0.5rem 0;
|
margin: 1.25rem 0 0.5rem;
|
||||||
padding: 1.5rem 0 0 0;
|
padding: 1.5rem 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include media-breakpoint-up(lg) {
|
@include media-breakpoint-up(lg) {
|
||||||
.docs-links h3,
|
.docs-links h3,
|
||||||
.page-links h3 {
|
.page-links h3 {
|
||||||
margin: 1.125rem 1.5rem 0.75rem 0;
|
margin: 1.125rem 1.5rem 0.75rem 0;
|
||||||
padding: 1.375rem 0 0 0;
|
padding: 1.375rem 0 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
functions = "functions"
|
functions = "functions"
|
||||||
|
|
||||||
[build.environment]
|
[build.environment]
|
||||||
NODE_VERSION = "16.9.1"
|
NODE_VERSION = "16.13.1"
|
||||||
NPM_VERSION = "7.21.1"
|
NPM_VERSION = "8.1.2"
|
||||||
|
|
||||||
[context.production]
|
[context.production]
|
||||||
command = "npm run build"
|
command = "npm run build"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
34
package.json
34
package.json
|
@ -34,33 +34,33 @@
|
||||||
"version": "auto-changelog -p && git add CHANGELOG.md"
|
"version": "auto-changelog -p && git add CHANGELOG.md"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.15",
|
"@babel/cli": "^7.16",
|
||||||
"@babel/core": "^7.15",
|
"@babel/core": "^7.16",
|
||||||
"@babel/preset-env": "^7.15",
|
"@babel/preset-env": "^7.16",
|
||||||
"@fullhuman/postcss-purgecss": "^4.0",
|
"@fullhuman/postcss-purgecss": "^4.1",
|
||||||
"auto-changelog": "^2.3.0",
|
"auto-changelog": "^2.3.0",
|
||||||
"autoprefixer": "^10.3",
|
"autoprefixer": "^10.4",
|
||||||
"bootstrap": "^5.1",
|
"bootstrap": "^5.1",
|
||||||
"clipboard": "^2.0",
|
"clipboard": "^2.0",
|
||||||
"eslint": "^8.0",
|
"eslint": "^8.6",
|
||||||
"exec-bin": "^1.0.0",
|
"exec-bin": "^1.0.0",
|
||||||
"hugo-installer": "^3.1",
|
|
||||||
"flexsearch": "^0.7.21",
|
"flexsearch": "^0.7.21",
|
||||||
"highlight.js": "^11.2",
|
"highlight.js": "^11.4",
|
||||||
|
"hugo-installer": "^3.1",
|
||||||
"instant.page": "^5.1",
|
"instant.page": "^5.1",
|
||||||
"katex": "^0.13",
|
"katex": "^0.15",
|
||||||
"lazysizes": "^5.3",
|
"lazysizes": "^5.3",
|
||||||
"markdownlint-cli": "^0.29",
|
"markdownlint-cli": "^0.30.0",
|
||||||
"node-fetch": "^3.0",
|
|
||||||
"mermaid": "^8.13",
|
"mermaid": "^8.13",
|
||||||
"postcss": "^8.3",
|
"node-fetch": "^3.1",
|
||||||
"postcss-cli": "^9.0",
|
"postcss": "^8.4",
|
||||||
|
"postcss-cli": "^9.1",
|
||||||
"purgecss-whitelister": "^2.4",
|
"purgecss-whitelister": "^2.4",
|
||||||
"shx": "^0.3.3",
|
"shx": "^0.3.4",
|
||||||
"stylelint": "^13.13",
|
"stylelint": "^14.2",
|
||||||
"stylelint-config-standard": "^22.0"
|
"stylelint-config-standard-scss": "^3.0"
|
||||||
},
|
},
|
||||||
"otherDependencies": {
|
"otherDependencies": {
|
||||||
"hugo": "0.88.1"
|
"hugo": "0.92.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue