mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-11 09:39:44 -06:00
1. I don't think I'll ever have the capacity to keep maintaining this compat plugin. It's better to drop it now than later. 2. The plugin is needed at the time of alpha.0 because many ecosystem plugins does not support webpack 5. But now I don't think it will be a major hurdle. 3. The implementation was too hacky.
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
module.exports = {
|
|
'testEnvironment': 'node',
|
|
'setupFiles': [
|
|
'<rootDir>/scripts/testSetup.js'
|
|
],
|
|
'testMatch': [
|
|
'**/__tests__/**/*.spec.js'
|
|
]
|
|
}
|