Merge pull request #16322 from nextcloud/bugfix/noid/fix-workflow-handlebars

Fix files_automatedtagging settings
This commit is contained in:
Morris Jobke 2019-07-10 11:52:49 +02:00 committed by GitHub
commit b120f57975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -10,9 +10,10 @@ module.exports = {
module: {
rules: [
{
test: /\.handlebars$/,
test: /\.handlebars/,
loader: "handlebars-loader",
options: {
query: {
extensions: '.handlebars',
helperDirs: path.join(__dirname, 'src/hbs_helpers'),
}
}

View File

@ -32,7 +32,7 @@ module.exports = []
workflowengine
)
.map(config =>
merge(config, {
merge.smart({
module: {
rules: [
{
@ -81,5 +81,5 @@ module.exports = []
},
extensions: ['*', '.js', '.vue', '.json']
}
})
}, config)
);