2017-05-23 11:35:31 +01:00
|
|
|
class FeatureList {
|
2017-06-05 23:41:17 +01:00
|
|
|
description () {
|
|
|
|
return 'Print installed features'
|
|
|
|
}
|
2017-05-23 11:35:31 +01:00
|
|
|
execute (options) {
|
|
|
|
const list = [
|
|
|
|
'lws-log',
|
|
|
|
'lws-cors',
|
|
|
|
'lws-json',
|
|
|
|
'lws-rewrite',
|
|
|
|
'lws-body-parser',
|
|
|
|
'lws-blacklist',
|
|
|
|
'lws-conditional-get',
|
|
|
|
'lws-mime',
|
|
|
|
'lws-compress',
|
|
|
|
'lws-mock-response',
|
|
|
|
'lws-spa',
|
|
|
|
'lws-static',
|
|
|
|
'lws-index'
|
|
|
|
]
|
|
|
|
console.log(list)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = FeatureList
|