forked from jherdman/liquid-fire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathember-cli-build.js
48 lines (44 loc) · 1.32 KB
/
ember-cli-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
'use strict';
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
module.exports = function(defaults) {
let app = new EmberAddon(defaults, {
sassOptions: {
includePaths: 'node_modules/bootstrap/scss'
},
snippetPaths: ['tests/dummy/snippets'],
snippetSearchPaths: ['app', 'tests/dummy/app', 'addon'],
trees: {
'public': 'tests/dummy/public'
},
prember: {
// GitHub Pages uses this filename to serve 404s
emptyFile: '404.html',
urls: [
'/',
'/installation',
'/cookbook',
'/helpers',
'/helpers/liquid-outlet',
'/helpers/liquid-outlet',
'/helpers/liquid-bind',
'/helpers/liquid-bind-block/1',
'/helpers/liquid-if',
'/helpers/liquid-spacer',
'/transition-map',
'/transition-map/route-constraints',
'/transition-map/value-constraints',
'/transition-map/media-constraints',
'/transition-map/dom-constraints',
'/transition-map/initial-constraints',
'/transition-map/choosing-transitions',
'/transition-map/debugging-constraints',
'/transitions',
'/transitions/predefined',
'/transitions/explode',
'/transitions/defining',
'/transitions/primitives'
]
}
});
return app.toTree();
};