-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
51 lines (46 loc) · 1.25 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const {readdirSync, readFileSync, writeFileSync} = require('fs');
const path = require('path');
const posthtml = require('posthtml');
const components = require('posthtml-component');
const beautify = require('posthtml-beautify');
const posthtmlFetch = require('posthtml-fetch')
const src = './src/pages/';
const dist = './dist/';
const options = {};
readdirSync(src).forEach(file => {
if (file.endsWith('.html')) {
const html = readFileSync(path.resolve(`${src}${file}`), 'utf-8');
posthtml([
// posthtmlFetch(),
components({
root: './src',
folders: ['components', 'layouts'],
namespaces: {
"name": "ui",
"root": "./node_modules/posthtml-bootstrap-ui/src",
"fallback": "./src/",
"custom": "./src/custom/"
},
strict: true,
expressions: {
locals: {
title: 'PostHTML UI'
},
strictMode: false
}
}),
posthtmlFetch(),
beautify({
rules: {
indent: 2,
blankLines: false,
sortAttr: false
}
}),
])
.process(html, options)
.then(result => {
writeFileSync(path.resolve(`${dist}${file}`), result.html, 'utf-8');
});
}
});