2017-03-28 13:29:18 +03:00
|
|
|
/* eslint-env node */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
|
|
const concat = require('broccoli-concat');
|
|
|
|
const mergeTrees = require('broccoli-merge-trees');
|
|
|
|
const uglify = require('broccoli-uglify-js');
|
|
|
|
const CleanCSS = require('broccoli-clean-css');
|
|
|
|
const environment = EmberApp.env();
|
|
|
|
const isProduction = environment === 'production';
|
|
|
|
let assetLocation, codemirrorAssets;
|
2015-09-03 13:03:45 +03:00
|
|
|
|
|
|
|
assetLocation = function (fileName) {
|
|
|
|
if (isProduction) {
|
|
|
|
fileName = fileName.replace('.', '.min.');
|
|
|
|
}
|
2017-03-28 13:29:18 +03:00
|
|
|
return `/assets/${fileName}`;
|
2015-09-03 13:03:45 +03:00
|
|
|
};
|
|
|
|
|
2016-07-05 19:30:14 +03:00
|
|
|
codemirrorAssets = function () {
|
2017-03-28 13:29:18 +03:00
|
|
|
let codemirrorFiles = [
|
2016-07-05 19:30:14 +03:00
|
|
|
'lib/codemirror.css',
|
|
|
|
'theme/xq-light.css',
|
|
|
|
'lib/codemirror.js',
|
|
|
|
'mode/htmlmixed/htmlmixed.js',
|
|
|
|
'mode/xml/xml.js',
|
|
|
|
'mode/css/css.js',
|
|
|
|
'mode/javascript/javascript.js'
|
|
|
|
];
|
|
|
|
|
|
|
|
if (environment === 'test') {
|
|
|
|
return {import: codemirrorFiles};
|
|
|
|
}
|
|
|
|
|
2017-03-30 22:51:50 +03:00
|
|
|
let config = {};
|
|
|
|
|
|
|
|
config.public = {
|
|
|
|
include: codemirrorFiles,
|
|
|
|
destDir: '/',
|
|
|
|
processTree(tree) {
|
|
|
|
let jsTree = concat(tree, {
|
|
|
|
outputFile: 'assets/codemirror/codemirror.js',
|
|
|
|
headerFiles: ['lib/codemirror.js'],
|
|
|
|
inputFiles: ['mode/**/*'],
|
|
|
|
sourceMapConfig: {enabled: false}
|
|
|
|
});
|
|
|
|
|
|
|
|
let cssTree = concat(tree, {
|
|
|
|
outputFile: 'assets/codemirror/codemirror.css',
|
|
|
|
inputFiles: ['**/*.css']
|
|
|
|
});
|
|
|
|
|
|
|
|
if (isProduction) {
|
|
|
|
jsTree = uglify(jsTree);
|
|
|
|
cssTree = new CleanCSS(cssTree);
|
2016-07-05 19:30:14 +03:00
|
|
|
}
|
2017-03-30 22:51:50 +03:00
|
|
|
|
|
|
|
return mergeTrees([tree, jsTree, cssTree]);
|
2016-07-05 19:30:14 +03:00
|
|
|
}
|
|
|
|
};
|
2017-03-30 22:51:50 +03:00
|
|
|
|
|
|
|
// put the files in vendor ready for importing into the test-support file
|
|
|
|
if (environment === 'development') {
|
|
|
|
config.vendor = codemirrorFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
2016-07-05 19:30:14 +03:00
|
|
|
};
|
|
|
|
|
2017-02-17 22:46:41 +03:00
|
|
|
function postcssPlugins() {
|
2017-03-28 13:29:18 +03:00
|
|
|
let plugins = [{
|
2017-02-17 22:46:41 +03:00
|
|
|
module: require('postcss-easy-import')
|
|
|
|
}, {
|
|
|
|
module: require('postcss-custom-properties')
|
|
|
|
}, {
|
|
|
|
module: require('postcss-color-function')
|
|
|
|
}, {
|
|
|
|
module: require('autoprefixer'),
|
|
|
|
options: {
|
|
|
|
browsers: ['last 2 versions']
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
|
|
|
if (isProduction) {
|
|
|
|
plugins.push({
|
|
|
|
module: require('cssnano')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return plugins;
|
|
|
|
}
|
|
|
|
|
2015-09-03 13:03:45 +03:00
|
|
|
module.exports = function (defaults) {
|
2017-03-28 13:29:18 +03:00
|
|
|
let app = new EmberApp(defaults, {
|
2017-02-17 22:46:41 +03:00
|
|
|
'ember-cli-babel': {
|
2016-02-04 15:49:53 +03:00
|
|
|
optional: ['es6.spec.symbols'],
|
|
|
|
includePolyfill: true
|
|
|
|
},
|
2017-02-21 15:28:05 +03:00
|
|
|
'ember-composable-helpers': {
|
|
|
|
only: ['toggle']
|
|
|
|
},
|
2015-09-03 13:03:45 +03:00
|
|
|
outputPaths: {
|
|
|
|
app: {
|
2017-03-14 19:04:46 +03:00
|
|
|
html: isProduction ? 'index.min.html' : 'index.html',
|
2017-02-17 22:46:41 +03:00
|
|
|
js: assetLocation('ghost.js'),
|
|
|
|
css: {
|
|
|
|
app: assetLocation('ghost.css'),
|
2017-04-05 12:39:07 +03:00
|
|
|
// TODO: find a way to use the .min file with the lazyLoader
|
|
|
|
'app-dark': 'assets/ghost-dark.css'
|
2017-02-17 22:46:41 +03:00
|
|
|
}
|
2015-09-03 13:03:45 +03:00
|
|
|
},
|
|
|
|
vendor: {
|
|
|
|
js: assetLocation('vendor.js'),
|
|
|
|
css: assetLocation('vendor.css')
|
|
|
|
}
|
|
|
|
},
|
2017-02-17 22:46:41 +03:00
|
|
|
postcssOptions: {
|
|
|
|
compile: {
|
|
|
|
enabled: true,
|
|
|
|
plugins: postcssPlugins()
|
|
|
|
}
|
2015-09-03 13:03:45 +03:00
|
|
|
},
|
2017-03-14 19:04:46 +03:00
|
|
|
fingerprint: {enabled: true},
|
2016-06-29 11:25:51 +03:00
|
|
|
nodeAssets: {
|
2016-06-29 12:23:45 +03:00
|
|
|
'blueimp-md5': {
|
|
|
|
import: ['js/md5.js']
|
|
|
|
},
|
2016-07-05 19:30:14 +03:00
|
|
|
codemirror: codemirrorAssets(),
|
2016-06-29 11:48:38 +03:00
|
|
|
'jquery-deparam': {
|
|
|
|
import: ['jquery-deparam.js']
|
2016-06-29 12:23:45 +03:00
|
|
|
},
|
2017-03-02 14:06:20 +03:00
|
|
|
'mobiledoc-kit': {
|
|
|
|
import: ['dist/amd/mobiledoc-kit.js', 'dist/amd/mobiledoc-kit.map']
|
|
|
|
},
|
2016-06-29 12:23:45 +03:00
|
|
|
moment: {
|
|
|
|
import: ['moment.js']
|
|
|
|
},
|
|
|
|
'moment-timezone': {
|
|
|
|
import: ['builds/moment-timezone-with-data.js']
|
|
|
|
},
|
|
|
|
'password-generator': {
|
|
|
|
import: ['lib/password-generator.js']
|
2016-06-29 11:25:51 +03:00
|
|
|
}
|
|
|
|
},
|
2015-09-03 13:03:45 +03:00
|
|
|
'ember-cli-selectize': {
|
|
|
|
theme: false
|
2017-03-01 15:48:27 +03:00
|
|
|
},
|
|
|
|
svg: {
|
|
|
|
paths: [
|
|
|
|
'public/assets/icons'
|
|
|
|
],
|
|
|
|
optimize: {
|
|
|
|
plugins: [
|
|
|
|
{removeDimensions: true},
|
|
|
|
{removeTitle: true},
|
|
|
|
{removeXMLNS: true}
|
|
|
|
]
|
|
|
|
}
|
2015-09-03 13:03:45 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// 'dem Scripts
|
|
|
|
app.import('bower_components/validator-js/validator.js');
|
|
|
|
app.import('bower_components/rangyinputs/rangyinputs-jquery-src.js');
|
|
|
|
app.import('bower_components/showdown-ghost/src/showdown.js');
|
|
|
|
app.import('bower_components/showdown-ghost/src/extensions/ghostgfm.js');
|
|
|
|
app.import('bower_components/showdown-ghost/src/extensions/ghostimagepreview.js');
|
|
|
|
app.import('bower_components/showdown-ghost/src/extensions/footnotes.js');
|
|
|
|
app.import('bower_components/showdown-ghost/src/extensions/highlight.js');
|
|
|
|
app.import('bower_components/keymaster/keymaster.js');
|
|
|
|
app.import('bower_components/devicejs/lib/device.js');
|
2016-06-30 16:42:00 +03:00
|
|
|
|
|
|
|
// jquery-ui partial build
|
|
|
|
app.import('bower_components/jquery-ui/ui/core.js');
|
|
|
|
app.import('bower_components/jquery-ui/ui/widget.js');
|
|
|
|
app.import('bower_components/jquery-ui/ui/mouse.js');
|
|
|
|
app.import('bower_components/jquery-ui/ui/draggable.js');
|
|
|
|
app.import('bower_components/jquery-ui/ui/droppable.js');
|
|
|
|
app.import('bower_components/jquery-ui/ui/sortable.js');
|
|
|
|
|
2015-09-03 13:03:45 +03:00
|
|
|
app.import('bower_components/jquery-file-upload/js/jquery.fileupload.js');
|
|
|
|
app.import('bower_components/blueimp-load-image/js/load-image.all.min.js');
|
|
|
|
app.import('bower_components/jquery-file-upload/js/jquery.fileupload-process.js');
|
|
|
|
app.import('bower_components/jquery-file-upload/js/jquery.fileupload-image.js');
|
|
|
|
app.import('bower_components/google-caja/html-css-sanitizer-bundle.js');
|
|
|
|
app.import('bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.js');
|
|
|
|
|
2017-03-30 22:51:50 +03:00
|
|
|
if (app.env !== 'production') {
|
2017-03-28 13:29:18 +03:00
|
|
|
app.import(`${app.bowerDirectory}/jquery.simulate.drag-sortable/jquery.simulate.drag-sortable.js`, {type: 'test'});
|
2015-09-16 20:02:06 +03:00
|
|
|
}
|
|
|
|
|
2017-03-30 22:51:50 +03:00
|
|
|
// pull things we rely on via lazy-loading into the test-support.js file so
|
|
|
|
// that tests don't break when running via http://localhost:4200/tests
|
|
|
|
if (app.env === 'development') {
|
|
|
|
app.import('vendor/codemirror/lib/codemirror.js', {type: 'test'});
|
|
|
|
}
|
|
|
|
|
2015-09-03 13:03:45 +03:00
|
|
|
return app.toTree();
|
|
|
|
};
|