You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
398 B
18 lines
398 B
|
|
var fs = require('fs');
|
|
|
|
if (fs.existsSync(path.join(process.cwd() + "/npm"))) {
|
|
var rootModules = path.join(process.cwd() + '/npm/node_modules/')
|
|
} else{
|
|
var rootModules = ''
|
|
}
|
|
|
|
const importFresh = require(rootModules+'import-fresh');
|
|
|
|
var filters = importFresh('./filters.js')
|
|
var actions = importFresh('./actions.js')
|
|
|
|
module.exports.filters = filters
|
|
module.exports.actions = actions
|
|
|