mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
082c437fff
- see core/client/lib/assets-delivery/index.js for how this is done - Turn off ember-cli fingerprinting - ember-cli 0.2.0; Update .npmignore - Fallback to old version of ember-cli-sass due to lib-sass errors - Keep ember-data at beta-14.1 until we find the dep that's breaking on snapshot.attr - Fix release task to ignore blank lines in .npmignore
10 lines
320 B
JavaScript
10 lines
320 B
JavaScript
module.exports = {
|
|
name: 'asset-delivery',
|
|
postBuild: function (results) {
|
|
var fs = this.project.require('fs-extra');
|
|
|
|
fs.copySync(results.directory + '/index.html', '../server/views/default.hbs');
|
|
fs.copySync('./dist/assets', '../built/assets');
|
|
}
|
|
};
|