We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
タスクを配列で指定し、配列の要素に文字列を与えた場合、文字列で定義されたタスクが存在しない時の警告がほしい。つまり、次のような場合に警告を出してほしいです。
const pon = require('pon') module.exports = pon({ a: [ 'notExistTask', () => {} ] })
$ pon a [a] Task started... [a] ...done! (11ms)
なお、以下のやつならちゃんと警告が出る
const pon = require('pon') module.exports = pon({ a: [ 'notExistTask' ] })
$ pon a No task found for name: "a"
The text was updated successfully, but these errors were encountered:
存在しないタスクを実行しようとしたら警告を出してほしい realglobe-Inc/pon#13
06c6202
Merge pull request #9 from realglobe-Inc/fix_warning
19fc8eb
No branches or pull requests
タスクを配列で指定し、配列の要素に文字列を与えた場合、文字列で定義されたタスクが存在しない時の警告がほしい。つまり、次のような場合に警告を出してほしいです。
なお、以下のやつならちゃんと警告が出る
The text was updated successfully, but these errors were encountered: