ExtJs минимизирует также внешние библиотеки

Я работаю с ExtJs 5.1.

Я добавил некоторые внешние библиотеки в приложение через app.json, просто используя "путь": "libPath"

Все отлично работает, но когда я бегу

sencha app build production

Cmd пытается также минимизировать внешние библиотеки. Если минимизируется Сенчей, некоторые из моих внешних библиотек перейдут на Js Exception.

Как я могу сказать sencha cmd для создания и минимизации только кода extjs и копирования внешних библиотек без редактирования?

Если я бегу

sencha app build testing

все работает отлично.

большое спасибо

2 ответа

Посмотрите на app.json комментарии по всему js массив:

    /**
 * List of all JavaScript assets in the right execution order.
 *
 * Each item is an object with the following format:
 *
 *      {
 *          // Path to file. If the file is local this must be a relative path from
 *          // this app.json file.
 *          //
 *          "path": "path/to/script.js",   // REQUIRED
 *
 *          // Set to true on one file to indicate that it should become the container
 *          // for the concatenated classes.
 *          //
 *          "bundle": false,    // OPTIONAL
 *
 *          // Set to true to include this file in the concatenated classes.
 *          //
 *          "includeInBundle": false,  // OPTIONAL
 *
 *          // Specify as true if this file is remote and should not be copied into the
 *          // build folder. Defaults to false for a local file which will be copied.
 *          //
 *          "remote": false,    // OPTIONAL
 *
 *          // If not specified, this file will only be loaded once, and cached inside
 *          // localStorage until this value is changed. You can specify:
 *          //
 *          //   - "delta" to enable over-the-air delta update for this file
 *          //   - "full" means full update will be made when this file changes
 *          //
 *          "update": "",        // OPTIONAL
 *
 *          // A value of true indicates that is a development mode only dependency.
 *          // These files will not be copied into the build directory or referenced
 *          // in the generate app.json manifest for the micro loader.
 *          //
 *          "bootstrap": false   // OPTIONAL
 *      }
 *
 */
"js": [
    {
        "path": "app.js",
        "bundle": true
    }
],

Я думаю "includeInBundle" : false, может сделать трюк для вас.

Вы положили внешние библиотеки в папку ресурсов вашего приложения? Это обычно просто включено как есть.

Другие вопросы по тегам