forked from eviltrout/ember-performance
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathember-cli-build.js
95 lines (85 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
"use strict";
const EmberApp = require("ember-cli/lib/broccoli/ember-app");
const MergeTrees = require("broccoli-merge-trees");
const Concat = require("broccoli-concat");
const CopyIndex = require("./lib/copy-index");
const Funnel = require("broccoli-funnel");
const clientDepsTree = new Funnel("node_modules", {
include: [
"headjs/dist/1.0.0/head.js",
"benchmark/benchmark.js",
"rsvp/dist/rsvp.js",
"ascii-table/ascii-table.js",
"lodash/lodash.js",
],
});
const clientTree = new MergeTrees(["test-client", clientDepsTree], {
annotation: "test-client merge",
});
const testClient = new Concat(clientTree, {
headerFiles: [
"test-client.js",
"test-session.js",
"headjs/dist/1.0.0/head.js",
"lodash/lodash.js",
"benchmark/benchmark.js",
"rsvp/dist/rsvp.js",
"ascii-table/ascii-table.js",
"people.js",
],
outputFile: "/assets/test-client.js",
});
const compileTemplatesTree = new Funnel("compile-templates", {
include: ["index.{html,js}"],
destDir: "compile-templates",
});
const benchmarksIndexJs = new Funnel("benchmarks", {
include: ["**/*.js"],
destDir: "benchmarks",
});
const benchmarksIndexHtml = new CopyIndex(benchmarksIndexJs, {
annotation: "Copy index.html to benchmark",
});
const emberTree = new Funnel("ember", {
include: ["**/*.js"],
destDir: "ember",
});
module.exports = function (defaults) {
const app = new EmberApp(defaults, {
"@embroider/macros": {
setConfig: {
"ember-qunit": {
/**
* default: false
*
* removes the CSS for the test-container (where the app and components are rendered to)
*/
disableContainerStyles: true,
/**
* default: 'qunit-default'
* options: 'qunit-default' | 'ember'
*
* Sets the theme for the Web UI of the test runner. Use a different value to disable loading any theme, allowing you to provide your own external one.
*/
theme: "qunit-default",
},
},
},
fingerprint: {
enabled: false,
},
});
return new MergeTrees(
[
app.toTree(),
testClient,
compileTemplatesTree,
benchmarksIndexJs,
benchmarksIndexHtml,
emberTree,
],
{
annotation: "final dist merge",
},
);
};