File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
scalajs-vite is a module bundler for Scala.js projects that use npm packages: it bundles the .js file emitted by the
4
4
Scala.js compiler with its npm dependencies into a single .js file using Vite.
5
5
6
- Setup and use of this plugin should feel quite familiar to users of well known
7
- [ scalajs-bundler] ( https://scalacenter.github.io/scalajs-bundler ) , with the main difference being that there is no special
8
- handling of ` npmDependencies ` - they must be provided through ` package.json ` placed within ` vite ` directory in project's
9
- base.
10
-
11
6
## Getting started
12
7
8
+ Plugin should feel quite familiar to the users of well known [ scalajs-bundler] ( https://scalacenter.github.io/scalajs-bundler ) ,
9
+ with the main difference being that there is no special handling of ` npmDependencies ` - they must be provided through
10
+ ` package.json ` placed within ` vite ` directory in project's base.
11
+
13
12
### Basic setup
14
13
15
14
1 . Setup project layout, following is a minimal example:
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ inThisBuild(
13
13
)
14
14
),
15
15
sonatypeCredentialHost := " s01.oss.sonatype.org" ,
16
- sonatypeRepository := " https://s01.oss.sonatype.org/service/local"
16
+ sonatypeRepository := " https://s01.oss.sonatype.org/service/local" ,
17
+ versionScheme := Some (" semver-spec" )
17
18
)
18
19
)
19
20
You can’t perform that action at this time.
0 commit comments