15 lines
325 B
Plaintext
15 lines
325 B
Plaintext
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
<% dir.forEach(dirPath => { -%>
|
|
var <%- dirPathToName(dirPath) %> = require('./<%- dirPath %>/index.js');
|
|
<% }) -%>
|
|
var Components = [
|
|
<% dir.forEach(dirPath => { -%>
|
|
<%- dirPathToName(dirPath) %>,
|
|
<% }) -%>
|
|
]
|
|
|
|
exports["default"] = Components;
|