stable
Clone or download
Read-only
request #9299 combine with hash
Files concat might be tedious if we have to rebuild everything everytime a plugin or core change of version (basically we have to build at each version change). Introduce a new strategy based on hash of generated file + manifest instead of version. This has two main advantages: - First, dev no longer have to rebuild combined file each and everytime - Second, on delivery we are 100% sure that files are always up-to-date, even with a patch release that wouldn't have triggered a VERSION update. Change-Id: I01152acba6cd8ab683585cf1200f0c1769c615a1
Modified Files
Name | ||||
---|---|---|---|---|
M | .gitignore | +2 | −2 | Go to diff View file |
M | gulpfile.js | +26 | −5 | Go to diff View file |
M | package.json | +4 | −2 | Go to diff View file |
M | plugins/agiledashboard/gulpfile.js | +22 | −14 | Go to diff View file |
M | plugins/agiledashboard/package.json | +3 | −1 | Go to diff View file |
M | plugins/cardwall/gulpfile.js | +23 | −15 | Go to diff View file |
M | plugins/cardwall/package.json | +3 | −1 | Go to diff View file |
M | plugins/docman/gulpfile.js | +22 | −13 | Go to diff View file |
M | plugins/docman/package.json | +3 | −1 | Go to diff View file |
M | plugins/graphontrackersv5/gulpfile.js | +22 | −14 | Go to diff View file |
M | plugins/graphontrackersv5/package.json | +3 | −1 | Go to diff View file |
M | plugins/tracker/gulpfile.js | +44 | −36 | Go to diff View file |
M | plugins/tracker/package.json | +3 | −1 | Go to diff View file |
M | src/common/autoload.php | +4 | −8 | Go to diff View file |
A | src/common/layout/IncludeAssets.php | +68 | −0 | Go to diff View file |
A | src/common/layout/IncludeAssetsException.php | +25 | −0 | Go to diff View file |
M | src/common/layout/Layout.class.php | +11 | −2 | Go to diff View file |
M | src/common/plugin/Plugin.class.php | +6 | −12 | Go to diff View file |
M | src/www/themes/FlamingParrot/FlamingParrot_Theme.class.php | +3 | −2 | Go to diff View file |