我正在尝试将scala.js应用程序连接到节点模块。我以前没有这样做过。
在fastOptJS::webpack
上我遇到了构建失败:
target/scala-2.12/scalajs-bundler/main/node_modules/fs doesn't exist
target/scala-2.12/scalajs-bundler/main/node_modules/fs.webpack.js doesn't exist
target/scala-2.12/scalajs-bundler/main/node_modules/fs.web.js doesn't exist
target/scala-2.12/scalajs-bundler/main/node_modules/fs.js doesn't exist
target/scala-2.12/scalajs-bundler/main/node_modules/fs.json doesn't exist
build.sbt
enablePlugins(ScalaJSPlugin, ScalaJSBundlerPlugin)
name := "Toon Brew"
scalaVersion := "2.12.2"
scalaJSUseMainModuleInitializer := true
libraryDependencies += "be.doeraene" %%% "scalajs-jquery" % "0.9.1"
skip in packageJSDependencies := false
jsDependencies += "org.webjars" % "jquery" % "2.1.4" / "2.1.4/jquery.js"
npmDependencies in Compile += "fantasy-names" -> "1.1.2"
plugins.sbt
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.17")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.6.0")
门面
package toonbrew
import scala.scalajs.js
import scala.scalajs.js.annotation.JSImport
@JSImport("fantasy-names", JSImport.Namespace)
@js.native
object FantasyNames extends js.Object {
def names(cat: String, subCat: String, names: Int, gender: Int): js.Array[String] = js.native
}
如何解决此错误?
答案 0 :(得分:1)
通过扩展scalajs-bundler默认的webpack配置来忽略fs
。
否-fs.webpack.config.js 强>
module.exports = require('./scalajs.webpack.config');
module.exports.node = {fs: 'empty'};
<强> build.sbt 强>
webpackConfigFile := Some(baseDirectory.value / "no-fs.webpack.config.js")
归功于@ julien-richard-foy