refactor: autoreg
This commit is contained in:
parent
87d138e8c0
commit
5f701f1525
|
@ -1,11 +1,5 @@
|
|||
function traitComponents(scwp) {
|
||||
module.exports = function traitComponents(scwp) {
|
||||
if (process.env.SIDE && 'client' === process.env.SIDE.toLowerCase()) {
|
||||
scwp.enterSelf();
|
||||
scwp.loadSelf('scwp/autoreg', {
|
||||
paths: scwp.paths,
|
||||
root: scwp.root,
|
||||
type: 'trait-component',
|
||||
});
|
||||
scwp.autoreg('trait-component');
|
||||
}
|
||||
}
|
||||
module.exports = traitComponents;
|
||||
};
|
||||
|
|
|
@ -1,9 +1,3 @@
|
|||
function traits(scwp) {
|
||||
scwp.enterSelf();
|
||||
scwp.loadSelf('scwp/autoreg', {
|
||||
paths: scwp.paths,
|
||||
root: scwp.root,
|
||||
type: 'trait',
|
||||
});
|
||||
}
|
||||
module.exports = traits;
|
||||
module.exports = function traits(scwp) {
|
||||
scwp.autoreg('trait');
|
||||
};
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
module.exports = (scwp) => {
|
||||
scwp.enterSelf();
|
||||
scwp.loadSelf('scwp/autoreg', {
|
||||
paths: scwp.paths,
|
||||
root: scwp.root,
|
||||
type: 'packet',
|
||||
});
|
||||
scwp.autoreg('packet');
|
||||
};
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
const {join} = require('path');
|
||||
|
||||
function s13n(scwp) {
|
||||
scwp.enterSelf();
|
||||
scwp.loadSelf('scwp/autoreg', {
|
||||
paths: scwp.paths,
|
||||
root: scwp.root,
|
||||
type: 'synchronized',
|
||||
});
|
||||
}
|
||||
module.exports = s13n;
|
||||
module.exports = function s13n(scwp) {
|
||||
scwp.autoreg('synchronized');
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user