7bd22a3b87
refs https://github.com/TryGhost/Ghost/issues/9623 - switch to custom `mobiledoc-kit` build - fixes top-level elements not being run through parser plugins (https://github.com/bustle/mobiledoc-kit/pull/627) - fixes <kbd>Alt</kbd> getting stuck and causing <kbd>Backspace</kbd> to delete whole words (https://github.com/bustle/mobiledoc-kit/pull/626) - fixes error that can occur when a paste results in blank insert (https://github.com/bustle/mobiledoc-kit/pull/620) - add new `figureToImageCard` parser - replaces hacky workaround to detect an image+figcaption inside the `imgToCard` parser plugin - remove wrapping of html in a `<div>...</div>` when pasting - no longer necessary now that top-level elements are parsed - fixes rich-text pastes where multiple paragraphs would be collapsed into a single paragraph
155 lines
4.7 KiB
JavaScript
155 lines
4.7 KiB
JavaScript
/* 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-sourcemap');
|
|
const CleanCSS = require('broccoli-clean-css');
|
|
const environment = EmberApp.env();
|
|
const isProduction = environment === 'production';
|
|
let assetLocation, codemirrorAssets;
|
|
|
|
assetLocation = function (fileName) {
|
|
if (isProduction) {
|
|
fileName = fileName.replace('.', '.min.');
|
|
}
|
|
return `/assets/${fileName}`;
|
|
};
|
|
|
|
codemirrorAssets = function () {
|
|
let codemirrorFiles = [
|
|
// '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};
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
return mergeTrees([tree, jsTree, cssTree]);
|
|
}
|
|
};
|
|
|
|
// put the files in vendor ready for importing into the test-support file
|
|
if (environment === 'development') {
|
|
config.vendor = codemirrorFiles;
|
|
}
|
|
|
|
return config;
|
|
};
|
|
|
|
module.exports = function (defaults) {
|
|
let app = new EmberApp(defaults, {
|
|
'ember-cli-babel': {
|
|
optional: ['es6.spec.symbols'],
|
|
includePolyfill: true
|
|
},
|
|
'ember-composable-helpers': {
|
|
only: ['toggle']
|
|
},
|
|
outputPaths: {
|
|
app: {
|
|
html: isProduction ? 'index.min.html' : 'index.html',
|
|
js: assetLocation('ghost.js'),
|
|
css: {
|
|
app: assetLocation('ghost.css'),
|
|
// TODO: find a way to use the .min file with the lazyLoader
|
|
'app-dark': 'assets/ghost-dark.css'
|
|
}
|
|
},
|
|
vendor: {
|
|
js: assetLocation('vendor.js'),
|
|
css: assetLocation('vendor.css')
|
|
}
|
|
},
|
|
fingerprint: {
|
|
enabled: isProduction,
|
|
extensions: ['js', 'css', 'png', 'jpg', 'jpeg', 'gif', 'map']
|
|
},
|
|
minifyJS: {
|
|
options: {
|
|
output: {
|
|
semicolons: true
|
|
}
|
|
}
|
|
},
|
|
nodeAssets: {
|
|
codemirror: codemirrorAssets()
|
|
},
|
|
svgJar: {
|
|
strategy: 'inline',
|
|
stripPath: false,
|
|
sourceDirs: [
|
|
'public/assets/icons',
|
|
'lib/koenig-editor/public/icons'
|
|
],
|
|
optimizer: {
|
|
plugins: [
|
|
{removeDimensions: true},
|
|
{removeTitle: true},
|
|
{removeXMLNS: true},
|
|
// Transforms on groups are necessary to work around Firefox
|
|
// not supporting transform-origin on line/path elements.
|
|
{convertPathData: {
|
|
applyTransforms: false
|
|
}},
|
|
{moveGroupAttrsToElems: false}
|
|
]
|
|
}
|
|
}
|
|
});
|
|
|
|
// Stop: Normalize
|
|
app.import('node_modules/normalize.css/normalize.css');
|
|
app.import('node_modules/simplemde/debug/simplemde.css');
|
|
|
|
// 'dem Scripts
|
|
app.import('node_modules/google-caja-bower/html-css-sanitizer-bundle.js');
|
|
app.import('node_modules/keymaster/keymaster.js');
|
|
app.import('node_modules/@tryghost/mobiledoc-kit/dist/amd/mobiledoc-kit.js');
|
|
app.import('node_modules/@tryghost/mobiledoc-kit/dist/amd/mobiledoc-kit.map');
|
|
app.import('node_modules/simplemde/debug/simplemde.js');
|
|
app.import('node_modules/reframe.js/dist/noframe.es.js', {
|
|
using: [
|
|
{transformation: 'es6', as: 'noframe.js'}
|
|
]
|
|
});
|
|
|
|
// 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'});
|
|
}
|
|
|
|
return app.toTree();
|
|
};
|