mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
32 lines
767 B
JavaScript
32 lines
767 B
JavaScript
var path = require('path');
|
|
var package = require('./package');
|
|
|
|
// {{ settings for nico
|
|
exports.site = {
|
|
name: package.title,
|
|
description: package.description
|
|
};
|
|
exports.theme = 'theme';
|
|
exports.source = process.cwd();
|
|
exports.output = path.join(process.cwd(), '_site');
|
|
exports.permalink = '{{directory}}/{{filename}}';
|
|
exports.ignorefilter = function(filepath, subdir) {
|
|
var extname = path.extname(filepath);
|
|
if (extname === '.tmp' || extname === '.bak') {
|
|
return false;
|
|
}
|
|
if (/\.DS_Store/.test(filepath)) {
|
|
return false;
|
|
}
|
|
if (/^(_site|_theme|node_modules|\.idea)/.test(subdir)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|
|
exports.writers = [
|
|
'nico-jsx.PageWriter',
|
|
'nico-jsx.StaticWriter',
|
|
'nico-jsx.FileWriter'
|
|
];
|
|
// end settings }}
|