サーチ…


備考

前書き

フックは、Cordova CLIがCordova / Ionicアプリケーションビルドの特定のポイントで実行するコードの一部です。フックは、例えば、プロジェクト内のファイルを操作したり、アプリケーションにプラグインを自動的に追加したり、上の例のようにファイル内のコードエラーをチェックするために使用できます。

:Node.jsを使用してフックを書くことを強くお勧めします。クロスプラットフォームなので、 Javascriptなどで記述することもできます。

フックの種類

以下のフックタイプがサポートされています。実行順序は、名前に応じて非常に自明です。

after_build
after_compile
after_docs
after_emulate
after_platform_add
after_platform_rm
after_platform_ls
after_plugin_add
after_plugin_ls
after_plugin_rm
after_plugin_search
after_prepare
after_run
after_serve
before_build
before_compile
before_docs
before_emulate
before_platform_add
before_platform_rm
before_platform_ls
before_plugin_add
before_plugin_ls
before_plugin_rm
before_plugin_search
before_prepare
before_run
before_serve
pre_package/ <-- Applicable to Windows 8 and Windows Phone only. This hook is deprecated.

フックを定義する方法:

フックは、 <hook>要素を使用してプロジェクトのconfig.xmlで定義できます。たとえば、次のようになります。

<hook type="after_build" src="scripts/appAfterBuild.js" />

プラグインの開発者は、次のようにplugin.xml <hook>要素を使用してフックスクリプトを定義できます。

<hook type="after_build" src="scripts/afterBuild.js" />

before_plugin_installafter_plugin_installbefore_plugin_uninstallプラグインフックは、プラグインのインストール/アンインストール専用に起動されます。

注意root/hooksディレクトリにフックを置くことは、 config.xmlplugin.xmlフック要素のために推奨されなくなりました。ただし、この方法を使用する場合は、 root/hooksフォルダ内のファイルに対して実行権を設定することを忘れないでください。

Cordovaフックのドキュメントはこちらから入手できます

jshintを使用してbefore_prepareでJavascriptファイルのエラーをチェックする

#!/usr/bin/env node

var fs = require('fs');
var path = require('path');
var jshint = require('jshint').JSHINT;
var async = require('async');

var foldersToProcess = [
  'js'
];

foldersToProcess.forEach(function(folder) {
  processFiles("www/" + folder);
});

function processFiles(dir, callback) {
  var errorCount = 0;
  fs.readdir(dir, function(err, list) {
    if (err) {
      console.log('processFiles err: ' + err);
      return;
    }
    async.eachSeries(list, function(file, innercallback) {
      file = dir + '/' + file;
      fs.stat(file, function(err, stat) {
        if (!stat.isDirectory()) {
          if (path.extname(file) === ".js") {
            lintFile(file, function(hasError) {
              if (hasError) {
                errorCount++;
              }
              innercallback();
            });
          } else {
            innercallback();
          }
        } else {
          processFiles(file);
        }
      });
    }, function(error) {
      if (errorCount > 0) {
        process.exit(1);
      }
    });
  });
}

function lintFile(file, callback) {
  console.log("Linting " + file);
  fs.readFile(file, function(err, data) {
    if (err) {
      console.log('Error: ' + err);
      return;
    }
    if (jshint(data.toString())) {
      console.log('File ' + file + ' has no errors.');
      console.log('-----------------------------------------');
      callback(false);
    } else {
      console.error('Errors in file ' + file);
      var out = jshint.data(),
          errors = out.errors;
      for (var j = 0; j < errors.length; j++) {
        console.error(errors[j].line + ':' + errors[j].character + ' -> ' + errors[j].reason + ' -> ' + errors[j].evidence);
      }
      console.error('-----------------------------------------');
      setTimeout(function() {
        callback(true);
      }, 10);
    }
  });
}


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow