manifest.js 376 B

12345678910111213141516171819202122232425262728293031
  1. "use strict";
  2. class ManifestPreparer {
  3. constructor(options) {
  4. this.recipes = options.recipes;
  5. this.download = options.download;
  6. }
  7. prepare() {
  8. console.dir(this.recipes);
  9. }
  10. unzip(source, files) {
  11. }
  12. untar(source, files) {
  13. }
  14. flash() {
  15. }
  16. updateAddresses(){
  17. }
  18. }
  19. module.exports = {ManifestPreparer};