dependabot[bot] bc205ec774
⬆️ Bump sass from 1.64.0 to 1.64.1 in /website (#3899)
Bumps [sass](https://github.com/sass/dart-sass) from 1.64.0 to 1.64.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/sass/dart-sass/releases">sass's releases</a>.</em></p>
<blockquote>
<h2>Dart Sass 1.64.1</h2>
<p>To install Sass 1.64.1, download one of the packages below and <a href="https://katiek2.github.io/path-doc/">add it to your PATH</a>, or see <a href="https://sass-lang.com/install">the Sass website</a> for full installation instructions.</p>
<h1>Changes</h1>
<h3>Embedded Sass</h3>
<ul>
<li>Fix a bug where a valid <code>SassCalculation.clamp()</code> with less than 3 arguments would throw an error.</li>
</ul>
<p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1641">full changelog</a> for changes in earlier releases.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/sass/dart-sass/blob/main/CHANGELOG.md">sass's changelog</a>.</em></p>
<blockquote>
<h2>1.64.1</h2>
<h3>Embedded Sass</h3>
<ul>
<li>Fix a bug where a valid <code>SassCalculation.clamp()</code> with less than 3 arguments
would throw an error.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="3367abe161"><code>3367abe</code></a> Bump the sass_api version (<a href="https://redirect.github.com/sass/dart-sass/issues/2044">#2044</a>)</li>
<li><a href="2836216ba5"><code>2836216</code></a> Fix deprotofy SassCalculation.clamp (<a href="https://redirect.github.com/sass/dart-sass/issues/2043">#2043</a>)</li>
<li><a href="b1d56a4f07"><code>b1d56a4</code></a> Change terminology to refer to JS instead of Node.js (<a href="https://redirect.github.com/sass/dart-sass/issues/2039">#2039</a>)</li>
<li><a href="89bd36b14e"><code>89bd36b</code></a> Revert &quot;Start writing implementation documentation&quot;</li>
<li><a href="6c592134fe"><code>6c59213</code></a> Start writing implementation documentation</li>
<li>See full diff in <a href="https://github.com/sass/dart-sass/compare/1.64.0...1.64.1">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=sass&package-manager=npm_and_yarn&previous-version=1.64.0&new-version=1.64.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
2023-07-25 06:07:14 +00:00
..
2022-12-13 21:01:55 +00:00

Corso documentation

Corso documentation uses Docusaurus 2, a modern static website generator. Mermaid provides support for native diagrams in Markdown.

Requirements

Developing documentation for Corso requires the following tools on your machine:

  • make
  • Docker

Installation

make buildimage

Live documentation development

make dev

This command starts a local development server within the Docker container and will expose docs at http://localhost:3000.

Generating Corso CLI docs

make genclidocs

Corso's CLI documents are auto generated. This command explicitly triggers generating these docs. This step will happen automatically for the other commands where this is relevant.

Building static documentation

make build

This command generates static content into the build directory for integration with any static contents hosting service.

Serving static documentation

make serve

This command will serve the static content generated with make build at http://localhost:3000.

Style and linting

# Lint all docs
make check
# Lint specific files and/or folders
make check VALE_TARGET="README.md docs/concepts"

This command will lint all Markdown files and check them for style issues using the Docker container

Documentation platform development

make shell

Use this command to interactively (and temporarily!) change the contents or configuration of the live documentation container image (for example, when experimenting with new plugins).