Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. ## Introduce Webpack
  2.  
  3. - Decoupled Applications
  4.  
  5. - Webpack config that will take compile applications into single files
  6. - These files should be stored in the public/temp dir that will be not checked into git
  7. - Use fingerprinting and minify files.
  8. - ex. `multi_property.min.js` / `scatter.min.js`
  9. - Have npm scripts that runs a server, recompiles files upon change/ live reload?
  10.  
  11. - Original Applications
  12. - Move them into Decoupled Application
  13. - Update application to use 1.5x
  14.  
  15.  
  16. ## Introduce Typescript
  17.  
  18. - Introduction
  19. - Setup a meeting to see how many devs are comfortable with using Typescript.
  20. - Setup weekly classes to get to know typescript? Book club? egghead?
  21.  
  22. - Implementation
  23. - Update webpack config to introduce Typescrip to ES5 compiling
  24. - All new updates to code base should be made in ts
  25. - Compiled files should not be checked into source control/git
  26.  
  27.  
  28.  
  29. ## Introduce Angular 2-4?
  30.  
  31. - Introduction
  32. - Setup a meeting to see how many devs are comfortable with using Angular 2
  33. - Setup weekly classes to get to know angular2? Book club? egghead?
  34. -
  35.  
  36. - Implementation
  37. - Update webpack config to compile angular 2
  38. - All new updates to projects/extensions of RMX should be in Angular 4
  39. -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement