diff --git a/README.md b/README.md index 6dd0316..7294691 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,12 @@ scalajs-vite is a module bundler for Scala.js projects that use npm packages: it bundles the .js file emitted by the Scala.js compiler with its npm dependencies into a single .js file using Vite. -Setup and use of this plugin should feel quite familiar to users of well known -[scalajs-bundler](https://scalacenter.github.io/scalajs-bundler), with the main difference being that there is no special -handling of `npmDependencies` - they must be provided through `package.json` placed within `vite` directory in project's -base. - ## Getting started +Plugin should feel quite familiar to the users of well known [scalajs-bundler](https://scalacenter.github.io/scalajs-bundler), +with the main difference being that there is no special handling of `npmDependencies` - they must be provided through +`package.json` placed within `vite` directory in project's base. + ### Basic setup 1. Setup project layout, following is a minimal example: diff --git a/build.sbt b/build.sbt index ecc0c1b..9776fce 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,8 @@ inThisBuild( ) ), sonatypeCredentialHost := "s01.oss.sonatype.org", - sonatypeRepository := "https://s01.oss.sonatype.org/service/local" + sonatypeRepository := "https://s01.oss.sonatype.org/service/local", + versionScheme := Some("semver-spec") ) )