deps: bump versions to latest
This commit is contained in:
		
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,6 +1,5 @@
 | 
			
		||||
node_modules
 | 
			
		||||
public
 | 
			
		||||
resources
 | 
			
		||||
# Local Netlify folder
 | 
			
		||||
.netlify
 | 
			
		||||
TODO
 | 
			
		||||
.hugo_build.lock
 | 
			
		||||
@@ -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,
 | 
			
		||||
      {
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
/* jost-regular - latin */
 | 
			
		||||
@font-face {
 | 
			
		||||
  font-family: "Jost";
 | 
			
		||||
  font-family: Jost;
 | 
			
		||||
  font-style: normal;
 | 
			
		||||
  font-weight: 400;
 | 
			
		||||
  font-display: swap;
 | 
			
		||||
@@ -12,7 +12,7 @@
 | 
			
		||||
 | 
			
		||||
/* jost-500 - latin */
 | 
			
		||||
@font-face {
 | 
			
		||||
  font-family: "Jost";
 | 
			
		||||
  font-family: Jost;
 | 
			
		||||
  font-style: normal;
 | 
			
		||||
  font-weight: 500;
 | 
			
		||||
  font-display: swap;
 | 
			
		||||
@@ -24,7 +24,7 @@
 | 
			
		||||
 | 
			
		||||
/* jost-700 - latin */
 | 
			
		||||
@font-face {
 | 
			
		||||
  font-family: "Jost";
 | 
			
		||||
  font-family: Jost;
 | 
			
		||||
  font-style: normal;
 | 
			
		||||
  font-weight: 700;
 | 
			
		||||
  font-display: swap;
 | 
			
		||||
@@ -36,7 +36,7 @@
 | 
			
		||||
 | 
			
		||||
/* jost-italic - latin */
 | 
			
		||||
@font-face {
 | 
			
		||||
  font-family: "Jost";
 | 
			
		||||
  font-family: Jost;
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
  font-weight: 400;
 | 
			
		||||
  font-display: swap;
 | 
			
		||||
@@ -48,7 +48,7 @@
 | 
			
		||||
 | 
			
		||||
/* jost-500italic - latin */
 | 
			
		||||
@font-face {
 | 
			
		||||
  font-family: "Jost";
 | 
			
		||||
  font-family: Jost;
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
  font-weight: 500;
 | 
			
		||||
  font-display: swap;
 | 
			
		||||
@@ -60,7 +60,7 @@
 | 
			
		||||
 | 
			
		||||
/* jost-700italic - latin */
 | 
			
		||||
@font-face {
 | 
			
		||||
  font-family: "Jost";
 | 
			
		||||
  font-family: Jost;
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
  font-weight: 700;
 | 
			
		||||
  font-display: swap;
 | 
			
		||||
 
 | 
			
		||||
@@ -15,6 +15,7 @@ $black:    #000;
 | 
			
		||||
$yellow:   #ffe000;
 | 
			
		||||
$black:    #1d2d35;
 | 
			
		||||
$beige:    #fbf7f0;
 | 
			
		||||
 | 
			
		||||
// $red:      #e55235;
 | 
			
		||||
$purple:   #5d2f86;
 | 
			
		||||
$brown:    #aa9c84;
 | 
			
		||||
 
 | 
			
		||||
@@ -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;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										5238
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										5238
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
										
											
												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"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@babel/cli": "^7.15",
 | 
			
		||||
    "@babel/core": "^7.15",
 | 
			
		||||
    "@babel/preset-env": "^7.15",
 | 
			
		||||
    "@fullhuman/postcss-purgecss": "^4.0",
 | 
			
		||||
    "@babel/cli": "^7.16",
 | 
			
		||||
    "@babel/core": "^7.16",
 | 
			
		||||
    "@babel/preset-env": "^7.16",
 | 
			
		||||
    "@fullhuman/postcss-purgecss": "^4.1",
 | 
			
		||||
    "auto-changelog": "^2.3.0",
 | 
			
		||||
    "autoprefixer": "^10.3",
 | 
			
		||||
    "autoprefixer": "^10.4",
 | 
			
		||||
    "bootstrap": "^5.1",
 | 
			
		||||
    "clipboard": "^2.0",
 | 
			
		||||
    "eslint": "^8.0",
 | 
			
		||||
    "eslint": "^8.6",
 | 
			
		||||
    "exec-bin": "^1.0.0",
 | 
			
		||||
    "hugo-installer": "^3.1",
 | 
			
		||||
    "flexsearch": "^0.7.21",
 | 
			
		||||
    "highlight.js": "^11.2",
 | 
			
		||||
    "highlight.js": "^11.4",
 | 
			
		||||
    "hugo-installer": "^3.1",
 | 
			
		||||
    "instant.page": "^5.1",
 | 
			
		||||
    "katex": "^0.13",
 | 
			
		||||
    "katex": "^0.15",
 | 
			
		||||
    "lazysizes": "^5.3",
 | 
			
		||||
    "markdownlint-cli": "^0.29",
 | 
			
		||||
    "node-fetch": "^3.0",
 | 
			
		||||
    "markdownlint-cli": "^0.30.0",
 | 
			
		||||
    "mermaid": "^8.13",
 | 
			
		||||
    "postcss": "^8.3",
 | 
			
		||||
    "postcss-cli": "^9.0",
 | 
			
		||||
    "node-fetch": "^3.1",
 | 
			
		||||
    "postcss": "^8.4",
 | 
			
		||||
    "postcss-cli": "^9.1",
 | 
			
		||||
    "purgecss-whitelister": "^2.4",
 | 
			
		||||
    "shx": "^0.3.3",
 | 
			
		||||
    "stylelint": "^13.13",
 | 
			
		||||
    "stylelint-config-standard": "^22.0"
 | 
			
		||||
    "shx": "^0.3.4",
 | 
			
		||||
    "stylelint": "^14.2",
 | 
			
		||||
    "stylelint-config-standard-scss": "^3.0"
 | 
			
		||||
  },
 | 
			
		||||
  "otherDependencies": {
 | 
			
		||||
    "hugo": "0.88.1"
 | 
			
		||||
    "hugo": "0.92.0"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user