Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
fix(project): concat all files but components
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Vincent KASSI committed Aug 1, 2017
1 parent 3fb11b2 commit 37ee657
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions spoonx.js
Expand Up @@ -12,7 +12,22 @@ module.exports = {
importsToAdd: [],

// JS to be transpiled, but not be concated (ValueConverters, CustomElements)
jsResources: [],
jsResources: [
appRoot + 'attribute/prefixed.js',
appRoot + 'component/aurelia-form.js',
appRoot + 'component/entity-form.js',
appRoot + 'component/form-association.js',
appRoot + 'component/form-button.js',
appRoot + 'component/form-element.js',
appRoot + 'component/form-error.js',
appRoot + 'component/form-group.js',
appRoot + 'component/form-help.js',
appRoot + 'component/form-input.js',
appRoot + 'component/form-label.js',
appRoot + 'component/form-radio.js',
appRoot + 'component/form-select.js',
appRoot + 'component/form-textarea.js'
],

// Other resources that need to get copied keeping their path
resources: appRoot + '{**/*.css,**/*.html}',
Expand All @@ -24,6 +39,6 @@ module.exports = {
sort: false,

// concat js files
concat: false,
concat: true,
}
};

0 comments on commit 37ee657

Please sign in to comment.