okam-build
Version:
The build tool for Okam develop framework
17 lines (13 loc) • 329 B
JavaScript
/**
* @file Element attribute transformer
* @author xiaohong8023@outlook.com
*/
;
const {WX_DIRECTIVES_REGEXP} = require('./constant');
const directivesTransform = require('./directives');
module.exports = {
directives: {
match: WX_DIRECTIVES_REGEXP,
transform: directivesTransform
}
};