ビルド プロセスをテストするためだけにサンプル アプリを生成しましたが、ビルド プロセス中にエラーが発生しました。
$ ./js steal/buildjs apps/hello/hello.html -to apps/helloprod
Building to apps/helloprod/
BUILDING STYLES ---------------
apps/hello/hello.css
STYLE BUNDLE > apps/helloprod/production.css
Nice! Compressed: 17.1% Before: 41.0 bytes After: 34.0 bytes
!!!!!!!!!!! ERROR !!!!!!!!!!!
-message = java.io.FileNotFoundException: apps/helloprod/production.css (No such file or directory)
-fileName = steal/rhino/file.js
-lineNumber = 217
-name = JavaException
-javaException = java.io.FileNotFoundException: apps/helloprod/production.css (No such file or directory)
error loading html element [object HTMLScriptElement] JavaException: java.io.FileNotFoundException: apps/helloprod/production.css (No such file or directory)
アプリを生成したときにデフォルトで.cssファイルにいくつかのコンテンツがあったため、内部のコンテンツを削除しようとしました(その場合、ファイルのサイズを計算できないため、エラーが発生します。たとえばNaN undefined
、 41.0 バイト)。この特定のエラーは、私がこれを持っていたときに発生しましたhello.css
:
body{
background-color:lightyellow;
}
何か案は?