Details
-
Task
-
Status: Closed
-
L3 - Default
-
Resolution: Fixed
-
None
-
None
Description
We should build an infrastructure that allows us to reliably build JavaScript components in our project, now and in the future (during maintainance).
The general idea behind the infrastructure is
- restore cached state of dependencies
- build projects via npm/grunt
- save the state of all dependencies (bower_components, node_modules)
```javascript
build-cache restore
npm install
grunt build
build-cache save
```
Based on hashing of project dependencies we should be able to figure out, whether the dependencies have changed.