@iebh/tera-fy 1.0.11 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/README.md +12 -0
  2. package/api.md +324 -222
  3. package/dist/plugin.vue2.es2019.js +15 -0
  4. package/dist/plugin.vue2.es2019.js.map +7 -0
  5. package/dist/terafy.es2019.js +16 -0
  6. package/dist/terafy.es2019.js.map +7 -0
  7. package/dist/terafy.js +2 -2
  8. package/dist/terafy.js.map +4 -4
  9. package/lib/terafy.client.js +47 -11
  10. package/lib/terafy.server.js +29 -60
  11. package/package.json +3 -1
  12. package/plugins/vue2.js +32 -9
  13. package/.storybook/main.js +0 -22
  14. package/.storybook/preview.js +0 -17
  15. package/docs/assets/anchor.js +0 -350
  16. package/docs/assets/bass-addons.css +0 -12
  17. package/docs/assets/bass.css +0 -544
  18. package/docs/assets/fonts/EOT/SourceCodePro-Bold.eot +0 -0
  19. package/docs/assets/fonts/EOT/SourceCodePro-Regular.eot +0 -0
  20. package/docs/assets/fonts/LICENSE.txt +0 -93
  21. package/docs/assets/fonts/OTF/SourceCodePro-Bold.otf +0 -0
  22. package/docs/assets/fonts/OTF/SourceCodePro-Regular.otf +0 -0
  23. package/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf +0 -0
  24. package/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf +0 -0
  25. package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff +0 -0
  26. package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff +0 -0
  27. package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff +0 -0
  28. package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff +0 -0
  29. package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 +0 -0
  30. package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 +0 -0
  31. package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 +0 -0
  32. package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 +0 -0
  33. package/docs/assets/fonts/source-code-pro.css +0 -23
  34. package/docs/assets/github.css +0 -123
  35. package/docs/assets/site.js +0 -168
  36. package/docs/assets/split.css +0 -15
  37. package/docs/assets/split.js +0 -782
  38. package/docs/assets/style.css +0 -147
  39. package/docs/index.html +0 -3636
  40. package/docs/playground.html +0 -342
package/README.md CHANGED
@@ -33,3 +33,15 @@ let projectState = await terafy.getProjectState(); //= Object representing the a
33
33
 
34
34
  // See https://iebh.github.io/TERA-fy/ for a full API list
35
35
  ```
36
+
37
+ Included Files
38
+ --------------
39
+ Generally importing the source code TERA-fy client (`import terafy from '@iebh/tera-fy';`) should be sufficient but multiple versions of this client are shipped for compatibility with older or more annoying build systems:
40
+
41
+ | Import | Standard | Description |
42
+ |--------------------------------------------|--------------|--------------------------------------------------------------------|
43
+ | `@iebh/tera-fy` | Source Code | Basic, plain JS to be transformed however your build path requires |
44
+ | `@iebh/tera-fy/dist/terafy.es2019.js` | ESM + ES2019 | `@vue/cli-service` compatible version for older versions of Babel |
45
+ | `@iebh/tera-fy/dist/plugin.vue2.es2019.js` | ESM + ES2019 | `@vue/cli-service` compatible version of the Vue@2 plugin |
46
+
47
+ More versions can be added upon request or PR of the build command in the scripts section of `package.json`.