the question is : when i use the code below
process.env.DEBUG = '[webpack:dev]'
const debug = require('debug')(process.env.DEBUG)
debug('start')
it doesn't work, because process.env.DEBUG has '[]' character. when i use the code below:
process.env.DEBUG = 'webpack:dev'
it does work well!
so, if i want to use '[]', what should i do ?