@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.
- package/README.md +12 -0
- package/api.md +324 -222
- package/dist/plugin.vue2.es2019.js +15 -0
- package/dist/plugin.vue2.es2019.js.map +7 -0
- package/dist/terafy.es2019.js +16 -0
- package/dist/terafy.es2019.js.map +7 -0
- package/dist/terafy.js +2 -2
- package/dist/terafy.js.map +4 -4
- package/lib/terafy.client.js +47 -11
- package/lib/terafy.server.js +29 -60
- package/package.json +3 -1
- package/plugins/vue2.js +32 -9
- package/.storybook/main.js +0 -22
- package/.storybook/preview.js +0 -17
- package/docs/assets/anchor.js +0 -350
- package/docs/assets/bass-addons.css +0 -12
- package/docs/assets/bass.css +0 -544
- package/docs/assets/fonts/EOT/SourceCodePro-Bold.eot +0 -0
- package/docs/assets/fonts/EOT/SourceCodePro-Regular.eot +0 -0
- package/docs/assets/fonts/LICENSE.txt +0 -93
- package/docs/assets/fonts/OTF/SourceCodePro-Bold.otf +0 -0
- package/docs/assets/fonts/OTF/SourceCodePro-Regular.otf +0 -0
- package/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf +0 -0
- package/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf +0 -0
- package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff +0 -0
- package/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff +0 -0
- package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff +0 -0
- package/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff +0 -0
- package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 +0 -0
- package/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 +0 -0
- package/docs/assets/fonts/source-code-pro.css +0 -23
- package/docs/assets/github.css +0 -123
- package/docs/assets/site.js +0 -168
- package/docs/assets/split.css +0 -15
- package/docs/assets/split.js +0 -782
- package/docs/assets/style.css +0 -147
- package/docs/index.html +0 -3636
- 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`.
|