Skip to content

Commit

Permalink
Deploy website
Browse files Browse the repository at this point in the history
Deploy website version based on f0d90e9026ebf4920b313d6cf276fa6fe6ee2d30
  • Loading branch information
Docusaurus bot committed Jun 22, 2024
1 parent c6d9149 commit 4bf3411
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/semanticdb/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ <h3><a class="anchor" aria-hidden="true" id="sbt"></a><a href="#sbt" aria-hidden
<p>In order to enable <code>semanticdb-scalac</code> for your sbt project, add the following
to your build. Note that the compiler plugin requires the <code>-Yrangepos</code> compiler
option to be enabled.</p>
<pre><code class="hljs css language-scala">addCompilerPlugin(<span class="hljs-string">"org.scalameta"</span> % <span class="hljs-string">"semanticdb-scalac"</span> % <span class="hljs-string">"4.9.6"</span> cross <span class="hljs-type">CrossVersion</span>.full)
<pre><code class="hljs css language-scala">addCompilerPlugin(<span class="hljs-string">"org.scalameta"</span> % <span class="hljs-string">"semanticdb-scalac"</span> % <span class="hljs-string">"4.9.7"</span> cross <span class="hljs-type">CrossVersion</span>.full)
scalacOptions += <span class="hljs-string">"-Yrangepos"</span>
</code></pre>
<h2><a class="anchor" aria-hidden="true" id="consuming-semanticdb"></a><a href="#consuming-semanticdb" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Consuming SemanticDB</h2>
Expand All @@ -362,7 +362,7 @@ <h3><a class="anchor" aria-hidden="true" id="scala-bindings"></a><a href="#scala
<a href="https://github.com/scalameta/scalameta/blob/main/semanticdb/semanticdb/semanticdb.proto">the SemanticDB protobuf schema</a>.
Using this library, one can model SemanticDB entities as Scala case classes and
serialize/deserialize them into bytes and streams.</p>
<pre><code class="hljs">libraryDependencies += <span class="hljs-string">"org.scalameta"</span> %% <span class="hljs-string">"semanticdb"</span> % <span class="hljs-string">"4.9.6"</span>
<pre><code class="hljs">libraryDependencies += <span class="hljs-string">"org.scalameta"</span> %% <span class="hljs-string">"semanticdb"</span> % <span class="hljs-string">"4.9.7"</span>
</code></pre>
<p>Caveats:</p>
<ul>
Expand Down
6 changes: 3 additions & 3 deletions docs/trees/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ <h2><a class="anchor" aria-hidden="true" id="installation"></a><a href="#install
Scala 2.11, Scala 2.12, Scala 2.13, Scala.js and Scala Native.</p>
<h3><a class="anchor" aria-hidden="true" id="sbt"></a><a href="#sbt" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>sbt</h3>
<pre><code class="hljs css language-scala"><span class="hljs-comment">// build.sbt</span>
libraryDependencies += <span class="hljs-string">"org.scalameta"</span> %% <span class="hljs-string">"scalameta"</span> % <span class="hljs-string">"4.9.6"</span>
libraryDependencies += <span class="hljs-string">"org.scalameta"</span> %% <span class="hljs-string">"scalameta"</span> % <span class="hljs-string">"4.9.7"</span>

<span class="hljs-comment">// For Scala.js, Scala Native</span>
libraryDependencies += <span class="hljs-string">"org.scalameta"</span> %%% <span class="hljs-string">"scalameta"</span> % <span class="hljs-string">"4.9.6"</span>
libraryDependencies += <span class="hljs-string">"org.scalameta"</span> %%% <span class="hljs-string">"scalameta"</span> % <span class="hljs-string">"4.9.7"</span>
</code></pre>
<p><a href="https://maven-badges.herokuapp.com/maven-central/org.scalameta/scalameta_2.12"><img src="https://maven-badges.herokuapp.com/maven-central/org.scalameta/scalameta_2.12/badge.svg" alt="Maven Central"></a></p>
<p>All code examples assume you have the following import</p>
Expand All @@ -85,7 +85,7 @@ <h3><a class="anchor" aria-hidden="true" id="ammonite-repl"></a><a href="#ammoni
<pre><code class="hljs css language-sh">$ amm --thin
Loading...
Welcome to the Ammonite Repl 2.3.8 (Scala 2.13.5 Java 11.0.7)
@ import <span class="hljs-variable">$ivy</span>.`org.scalameta::scalameta:4.9.6`, scala.meta._
@ import <span class="hljs-variable">$ivy</span>.`org.scalameta::scalameta:4.9.7`, scala.meta._
</code></pre>
<h3><a class="anchor" aria-hidden="true" id="scastie"></a><a href="#scastie" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Scastie</h3>
<p>You can try out Scalameta online with the
Expand Down
10 changes: 5 additions & 5 deletions docs/trees/scaladoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@
});
</script></nav></div><div class="container mainContainer"><div class="wrapper"><div class="post"><header class="postHeader"><h1 class="postHeaderTitle">Scaladoc</h1></header><article><div><span><p>Scaladoc documentation for individual modules can be browsed on static.javadoc.io:</p>
<ul>
<li><a href="https://static.javadoc.io/org.scalameta/trees_2.12/4.9.6/scala/meta/index.html">Trees</a>: syntax trees such as <code>Source</code>, <code>Term</code> and <code>Type</code>.</li>
<li><a href="https://static.javadoc.io/org.scalameta/scalameta_2.12/4.9.6/scala/meta/index.html">Scalameta</a>: umbrella API with extension methods such as <code>.parse[Source]</code>.</li>
<li><a href="https://static.javadoc.io/org.scalameta/testkit_2.12/4.9.6/scala/meta/index.html">Testkit</a>: utility methods for testing with Scalameta.</li>
<li><a href="https://static.javadoc.io/org.scalameta/parsers_2.12/4.9.6/scala/meta/index.html">Parsers</a>: internal parser APIs and implementation.</li>
<li><a href="https://static.javadoc.io/org.scalameta/common_2.12/4.9.6/scala/meta/index.html">Common</a>: internal APIs.</li>
<li><a href="https://static.javadoc.io/org.scalameta/trees_2.12/4.9.7/scala/meta/index.html">Trees</a>: syntax trees such as <code>Source</code>, <code>Term</code> and <code>Type</code>.</li>
<li><a href="https://static.javadoc.io/org.scalameta/scalameta_2.12/4.9.7/scala/meta/index.html">Scalameta</a>: umbrella API with extension methods such as <code>.parse[Source]</code>.</li>
<li><a href="https://static.javadoc.io/org.scalameta/testkit_2.12/4.9.7/scala/meta/index.html">Testkit</a>: utility methods for testing with Scalameta.</li>
<li><a href="https://static.javadoc.io/org.scalameta/parsers_2.12/4.9.7/scala/meta/index.html">Parsers</a>: internal parser APIs and implementation.</li>
<li><a href="https://static.javadoc.io/org.scalameta/common_2.12/4.9.7/scala/meta/index.html">Common</a>: internal APIs.</li>
</ul>
</span></div></article></div><div class="docs-prevnext"><a class="docs-prev button" href="/docs/trees/astexplorer.html"><span class="arrow-prev"></span><span>AST Explorer</span></a><a class="docs-next button" href="/docs/semanticdb/guide.html"><span>Guide</span><span class="arrow-next"></span></a></div></div></div><nav class="onPageNav"></nav></div><footer class="nav-footer" id="footer" style="background-color:#181A1F"><section class="sitemap"><a href="/" class="nav-home"><img src="/img/scalameta.png" alt="Scalameta" width="66" height="58"/></a><div><h5>Scalameta Docs</h5><a href=" /docs/trees/guide.html">Trees Guide</a><a href=" /docs/trees/quasiquotes.html">Quasiquotes</a><a href=" /docs/semanticdb/specification.html">SemanticDB</a></div><div><h5>Scalameta Projects</h5><a href="https://scalameta.org/metals">Metals: language server</a><a href="https://scalameta.org/scalafmt">Scalafmt: code formatter</a><a href="https://scalacenter.github.io/scalafix">Scalafix: linting and refactoring tool</a><a href="https://scalameta.org/munit">MUnit: testing library</a><a href="https://scalameta.org/mdoc">MDoc: documentation tool</a><a href="https://github.com/scalameta/metabrowse">Metabrowse: online code browser</a></div><div><h5>Community</h5><a href="https://github.com/scalameta/scalameta" target="_blank">GitHub</a><a href="https://github.com/scalameta/scalameta" target="_blank"><img src="https://img.shields.io/github/stars/scalameta/metals.svg?color=%23087e8b&amp;label=stars&amp;logo=github&amp;style=social"/></a><a href="https://discord.gg/RFpSVth" target="_blank"><img src="https://img.shields.io/discord/632642981228314653?logo=discord&amp;style=social"/></a><a href="https://gitter.im/scalameta/scalameta" target="_blank"><img src="https://img.shields.io/gitter/room/scalameta/scalameta.svg?logo=gitter&amp;style=social"/></a><a href="https://twitter.com/scalameta" target="_blank"><img src="https://img.shields.io/twitter/follow/scalameta.svg?logo=twitter&amp;style=social"/></a></div></section><section class="copyright">Copyright © 2024 Scalameta</section></footer></div><script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script><script>
document.addEventListener('keyup', function(e) {
Expand Down

0 comments on commit 4bf3411

Please sign in to comment.