Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nodejs under v15.5.1 has a bug: it will cache MODULE_NOT_FOUND when require a non-exits file([issue](nodejs/node#26926)). ./debug.js try to require('debug'), if the 'debug' pkg not exits, nodejs will cache the result. Even install debug later in the same process(spawn npm install), require('debug') will still throw error so, we should make 'debug' pacakge as dependencies.
- Loading branch information