-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
74 lines (59 loc) · 1.55 KB
/
index.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
'use strict';
const path = require('path');
const autoprefixer = require('autoprefixer');
const postcssMergeRules = require('postcss-merge-rules');
const postcssScss = require('postcss-scss');
const env = process.env.EMBER_ENV;
const isProduction = ['production'].includes(env);
module.exports = {
name: require('./package').name,
options: {
sourcemaps: {
enabled: true,
extensions: ['js', 'scss'],
},
minifyCSS: {
enabled: isProduction,
},
minifyJS: {
enabled: isProduction,
},
fingerprint: {
enabled: isProduction,
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'svg'],
},
sassOptions: {
extension: 'scss',
},
cssModules: {
extension: 'module.scss',
intermediateOutputPath: 'addon/styles/_modules.scss',
plugins: [
autoprefixer({
sourcemap: !isProduction,
cascade: false,
}),
postcssMergeRules(),
],
postcssOptions: {
syntax: postcssScss,
},
},
},
included() {
this._super.included.apply(this, arguments);
const modulesPath = path.join(
this.project.root,
'node_modules',
'ember-bedrock',
'node_modules',
);
this.options.sassOptions.includePaths = [path.join(modulesPath, 'normalize.css')];
this.app = this._findHost();
this.app.options = Object.assign({}, this.options, this.app.options);
this.app.options.cssModules.intermediateOutputPath = 'app/styles/_modules.scss';
},
isDevelopingAddon: function () {
return true;
},
};