forked from rancher/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ember-cli-build.js
113 lines (102 loc) · 4.36 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* eslint-env node */
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
const env = EmberApp.env();
module.exports = function(defaults) {
// Pull in a few useful environment settings for index.html to use
var appConfig = require('./config/environment')(env).APP;
var inline = {};
['version', 'appName', 'baseAssets'].forEach((key) => {
var val = appConfig[key];
if (val) {
inline[key] = { content: val };
}
});
var app = new EmberApp(defaults, {
'ember-cli-babel': { includePolyfill: true, },
storeConfigInMeta: false,
inlineContent: inline,
codemirror: {
modes: ['yaml', 'dockerfile', 'shell', 'markdown'],
themes: ['monokai'],
addonFiles: ['lint/lint.css', 'lint/lint.js', 'hint/show-hint.js', 'hint/show-hint.css', 'hint/anyword-hint.js', 'lint/yaml-lint.js']
},
outputPaths: {
app: {
css: {
'app-light': '/assets/ui-light.css',
'app-dark': '/assets/ui-dark.css'
}
}
},
nodeAssets: { 'xterm': { import: ['dist/xterm.css'] } },
SRI: { enabled: false, },
fingerprint: {
exclude: [
// These can be bind-mounted in
'assets/images/logos',
// These get version added to the query string so JS doesn't have to know the fingerprint
'assets/intl',
'assets/images/resources',
'ui-light.css', 'ui-light.rtl.css',
'ui-dark.css', 'ui-dark.rtl.css',
'ui.css', 'ui.rtl.css',
'vendor.css', 'vendor.rtl.css',
],
extensions: (appConfig.fingerprint === 'no' ? [] : ['js', 'css', 'png', 'jpg', 'gif', 'svg', 'map', 'woff', 'woff2', 'ttf']),
},
sourcemaps: {
enabled: true,
extensions: ['js']
},
});
// Use `app.import` to add additional libraries to the generated
// output files.
//
// If you need to use different assets in different
// environments, specify an object as the first parameter. That
// object's keys should be the environment name and the values
// should be the asset to use in that environment.
//
// If the library that you are including contains AMD or ES6
// modules that you would like to import into your application
// please specify an object with the list of modules as keys
// along with the exports of each module as its value.
app.import('node_modules/async/dist/async.js');
app.import('node_modules/d3/d3.js');
app.import('node_modules/identicon.js/pnglib.js');
app.import('node_modules/identicon.js/identicon.js');
app.import('node_modules/jgrowl/jquery.jgrowl.css');
app.import('node_modules/jgrowl/jquery.jgrowl.js');
app.import('node_modules/jsondiffpatch/public/build/jsondiffpatch.js');
app.import('node_modules/jsondiffpatch/public/build/jsondiffpatch-formatters.js');
app.import('node_modules/jszip/dist/jszip.js')
app.import('node_modules/moment/moment.js');
app.import('node_modules/prismjs/prism.js');
app.import('node_modules/prismjs/components/prism-bash.js');
app.import('node_modules/prismjs/components/prism-yaml.js');
app.import('node_modules/prismjs/components/prism-json.js');
app.import('node_modules/ember-source/dist/ember-template-compiler.js');
app.import('node_modules/ipaddr.js/lib/ipaddr.js');
app.import('node_modules/xterm/dist/xterm.js');
app.import('node_modules/xterm/dist/addons/fit/fit.js', {
using: [{
transformation: 'amd',
as: 'xterm-fit'
}]
});
// app.import('vendor/aws-sdk-ec2.js');
app.import('vendor/aws-sdk-eks-ec2-iam-2.348.0.min.js');
app.import('vendor/ember-shortcuts.js');
app.import('vendor/file-saver/fileSaver.mini.js');
app.import('vendor/icons/fonts/rancher-icons.svg', { destDir: 'assets/fonts/' });
app.import('vendor/icons/fonts/rancher-icons.ttf', { destDir: 'assets/fonts/' });
app.import('vendor/icons/fonts/rancher-icons.woff', { destDir: 'assets/fonts/' });
app.import('vendor/icons/style.css');
app.import('vendor/json-sanitizer/json-sanitizer.js');
app.import('vendor/prompt/prompt-v1-latin-300.woff', { destDir: 'assets/fonts/' });
app.import('vendor/prompt/prompt-v1-latin-300.woff2', { destDir: 'assets/fonts/' });
app.import('vendor/prompt/prompt-v1-latin-600.woff', { destDir: 'assets/fonts/' });
app.import('vendor/prompt/prompt-v1-latin-600.woff2', { destDir: 'assets/fonts/' });
app.import('vendor/aliyun-sdk.js');
return app.toTree();
};