2015-06-04 18:44:08 +02:00
|
|
|
var path = require('path');
|
|
|
|
|
|
|
|
var srcDir = 'static_src';
|
|
|
|
var destDir = 'static';
|
|
|
|
|
|
|
|
var App = function(dir, options) {
|
|
|
|
this.dir = dir;
|
|
|
|
this.options = options || {};
|
|
|
|
this.appName = this.options.appName || path.basename(dir);
|
|
|
|
this.sourceFiles = path.join('.', this.dir, srcDir);
|
|
|
|
};
|
|
|
|
App.prototype = Object.create(null);
|
|
|
|
App.prototype.scssIncludePaths = function() {
|
|
|
|
return [this.sourceFiles];
|
|
|
|
};
|
|
|
|
App.prototype.scssSources = function() {
|
2016-04-16 18:15:47 +02:00
|
|
|
// Assume that any scss we care about is always within the expected
|
2015-12-03 18:11:08 +01:00
|
|
|
// "appname/static_url/appname/scss/" folder.
|
|
|
|
// NB: this requires the user to adhere to sass's underscore prefixing
|
|
|
|
// to tell the compiler what files are includes.
|
|
|
|
return path.join(this.sourceFiles, this.appName, '/scss/**/*.scss')
|
2015-06-04 18:44:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// All the Wagtail apps that contain static files
|
|
|
|
var apps = [
|
2021-09-24 21:35:01 +02:00
|
|
|
new App(path.join('wagtail', 'admin'), {'appName': 'wagtailadmin'}),
|
|
|
|
new App(path.join('wagtail', 'documents'), {'appName': 'wagtaildocs'}),
|
|
|
|
new App(path.join('wagtail', 'embeds'), {'appName': 'wagtailembeds'}),
|
|
|
|
new App(path.join('wagtail', 'images'), {'appName': 'wagtailimages'}),
|
|
|
|
new App(path.join('wagtail', 'search'), {'appName': 'wagtailsearch'}),
|
|
|
|
new App(path.join('wagtail', 'snippets'), {'appName': 'wagtailsnippets'}),
|
|
|
|
new App(path.join('wagtail', 'users'), {'appName': 'wagtailusers'}),
|
|
|
|
new App(path.join('wagtail', 'contrib', 'styleguide'), {'appName': 'wagtailstyleguide'}),
|
|
|
|
new App(path.join('wagtail', 'contrib', 'settings'), {'appName': 'wagtailsettings'}),
|
|
|
|
new App(path.join('wagtail', 'contrib', 'modeladmin'), {'appName': 'wagtailmodeladmin'}),
|
2021-10-08 02:41:54 +02:00
|
|
|
new App(path.join('wagtail', 'contrib', 'typed_table_block'), {'appName': 'typed_table_block'}),
|
2015-06-04 18:44:08 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
apps: apps,
|
|
|
|
srcDir: srcDir,
|
2016-04-21 23:31:50 +02:00
|
|
|
destDir: destDir,
|
|
|
|
// Determines whether the pipeline is used in production or dev mode.
|
|
|
|
isProduction: process.env.NODE_ENV === 'production',
|
|
|
|
};
|