Guest User

Untitled

a guest
Jul 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. build/
  2. ├── es5-bundled
  3. │   ├── index.html
  4. │   ├── push-manifest.json
  5. │   ├── service-worker.js
  6. │   └── src
  7. │   └── _element
  8. │   └── _element.js
  9. ├── es6-bundled
  10. │   ├── index.html
  11. │   ├── push-manifest.json
  12. │   ├── service-worker.js
  13. │   └── src
  14. │   └── _element
  15. │   └── _element.js
  16. ├── esm-bundled
  17. │   ├── index.html
  18. │   ├── push-manifest.json
  19. │   ├── service-worker.js
  20. │   └── src
  21. │   └── _element
  22. │   └── _element.js
  23. └── polymer.json
  24.  
  25. build/ └── default
  26. ├── index.html
  27. ├── node_modules
  28. │   ├── @polymer
  29. │   │   └── polymer
  30. │   │   ├── lib
  31. │   │   │   ├── elements
  32. │   │   │   │   └── dom-module.js
  33. │   │   │   ├── mixins
  34. │   │   │   │   ├── element-mixin.js
  35. │   │   │   │   ├── properties-changed.js
  36. │   │   │   │   ├── properties-mixin.js
  37. │   │   │   │   ├── property-accessors.js
  38. │   │   │   │   ├── property-effects.js
  39. │   │   │   │   └── template-stamp.js
  40. │   │   │   └── utils
  41. │   │   │   ├── async.js
  42. │   │   │   ├── boot.js
  43. │   │   │   ├── case-map.js
  44. │   │   │   ├── html-tag.js
  45. │   │   │   ├── mixin.js
  46. │   │   │   ├── path.js
  47. │   │   │   ├── resolve-url.js
  48. │   │   │   ├── settings.js
  49. │   │   │   └── style-gather.js
  50. │   │   └── polymer-element.js
  51. │   └── @webcomponents
  52. │   └── webcomponentsjs
  53. │   └── webcomponents-loader.js
  54. └── src
  55. ├── _element
  56. │   └── _element.js
  57. └── test-app
  58. └── test-app.js
Add Comment
Please, Sign In to add comment