mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
20 lines
421 B
JavaScript
20 lines
421 B
JavaScript
'use strict';
|
|
const { buildDir } = require('./util');
|
|
|
|
buildDir('test', 'test-dist', {
|
|
babelExclude: {
|
|
'taglibs/async/client-reorder-runtime.min.js': true
|
|
},
|
|
babelOptions: {
|
|
"plugins": [
|
|
[
|
|
"minprops", {
|
|
"matchPrefix": "___",
|
|
"prefix": "",
|
|
"suffix": "_"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
});
|