2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

sencha app buildコマンドのメモ

2
Posted at

Sencha SDK Toolsでは、以下のコマンドでSencha Touch2のアプリケーションのJSファイルを圧縮できる。

$ sencha app build testing/production

buildコマンドでは、各クラスのrequireプロパティから、アプリケーションのクラスとSDKのクラスを必要なクラスだけ結合して、一つのファイル(app.js)にまとめる。

testing

  • app.jsは圧縮されない

production

  • app.jsは圧縮される(一行になる)

<debug>〜</debug>タグ

コメントで、<debug>と</debug>タグで囲むと、囲まれたJSコードはapp.jsに含まれなくなる。

function getPanel(html) {
	// <debug>
	if (!Ext.isDefined(html)) {
		throw new Error('html is required.');
	}
	// </debug>

	var panel = Ext.create('Ext.Panel');
   		 
	   	 
	   	 
}

上記の様なコードだと、引数チェックのJSコードはapp.jsに含まれない。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?