-
Notifications
You must be signed in to change notification settings - Fork 1
/
💩.json
55 lines (55 loc) · 1.16 KB
/
💩.json
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
52
53
54
55
{
"scripts": [{
"in": "example/src/js/main.ts",
"out": "example/dist/js/scripts.js",
"options": {
"sourcemap": true,
"minify": true,
"justMinified": false,
"format": "iife",
"target": "es2019"
}
}],
"styles": [{
"in": "example/src/scss/index.scss",
"out": "example/dist/css/styles.css",
"options": {
"sourcemap": true,
"minify": true,
"justMinified": false
}
}],
"markup": {
"in": "example/src/markup",
"out": "/",
"options": {
"site": {
"title": "💩 Poops",
"description": "Straightforward, no-bullshit bundler for the web.",
"url": "https://stamat.github.io/poops"
},
"data": [
"_data/features.yaml",
"_data/links.json",
"_data/poops.yaml"
],
"includePaths": [
"_layouts",
"_partials"
],
"timeDateFormat": "MMM D, YYYY"
}
},
"banner": "/* {{ name }} v{{ version }} | {{ homepage }} | {{ license }} License */",
"serve" : {
"port": 4040,
"base": "/"
},
"livereload": true,
"watch": [
"example/src"
],
"includePaths": [
"node_modules"
]
}