1

ビルドが完了した後、ビルド プロセス全体に含まれていない追加のファイルを縮小しようとしています。「-after-build」セクションからsencha cmdを呼び出して、次の方法を試してみることで、build.xmlファイル内からこれを実行できると思います。

<target name="-after-build">
    <x-sencha-command dir="${build.dir}">
        fs
            minify
                -f additional-file.js
                -t additional-file.min.js
                -yui
    </x-sencha-command>
</target>

残念ながら、これはかなり一般的なエラーになります。

[INF] -after-build:
[ERR]
[ERR] BUILD FAILED
[ERR] com.sencha.exceptions.BasicException
[ERR]
[ERR] Total time: 18 seconds
[ERR] The following error occurred while executing this line:
...\build.xml:31: com.sencha.exceptions.BasicException

build.xml の 31 行目は次のとおりです。

<x-sencha-command dir="${build.dir}">

これはどのように行うことができますか?

感謝をこめて

追伸: 私はすでにこの質問を sencha フォーラムに投稿しましたが、今のところ回答がありません: http://www.sencha.com/forum/showthread.php?272190-Executing-sencha-minify-command- from-build.xml

4

1 に答える 1