@iebh/tera-fy 2.0.20 → 2.0.22
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/CHANGELOG.md +41 -1
- package/dist/plugin.vue2.es2019.js +12 -12
- package/dist/terafy.es2019.js +1 -1
- package/dist/terafy.js +1 -1
- package/eslint.config.js +0 -5
- package/lib/syncro/entities.js +1 -1
- package/lib/syncro/syncro.js +82 -9
- package/lib/terafy.client.js +6 -2
- package/lib/terafy.server.js +71 -50
- package/package.json +5 -4
- package/utils/pathTools.js +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [2.0.
|
|
3
|
+
## [2.0.22](https://github.com/IEBH/TERA-fy/compare/v2.0.21...v2.0.22) (2025-04-10)
|
|
4
4
|
|
|
5
|
+
## [2.0.21](https://github.com/IEBH/TERA-fy/compare/v2.0.18...v2.0.21) (2025-04-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### chore
|
|
9
|
+
|
|
10
|
+
* Bump eslint ruleset ([143fc00](https://github.com/IEBH/TERA-fy/commit/143fc006cf7efa69f15e4e8fa7c432339fce6718))
|
|
11
|
+
* Various eslint tidyups ([8ff306e](https://github.com/IEBH/TERA-fy/commit/8ff306e99c4b9cefda1a5314d95c3cd90b16d26d))
|
|
12
|
+
|
|
13
|
+
### devops
|
|
14
|
+
|
|
15
|
+
* Add /dist to gitignore ([13c8d19](https://github.com/IEBH/TERA-fy/commit/13c8d190858150e0219d9e7ecc1196ab61c0bfea))
|
|
16
|
+
* Clear `dist` directory ([c7583aa](https://github.com/IEBH/TERA-fy/commit/c7583aa403008cea2be7ce224b7cc3d06110bc18))
|
|
17
|
+
* Force add dist/ to avoid issues with .gitignore rules ([ea84f5c](https://github.com/IEBH/TERA-fy/commit/ea84f5cb958405006bf37fe01499ef8e1cca32c6))
|
|
18
|
+
* Untrack dist between subsequent releases ([747ef0a](https://github.com/IEBH/TERA-fy/commit/747ef0a912329122f71484b1a0c7df8816e9f111))
|
|
19
|
+
|
|
20
|
+
### docs
|
|
21
|
+
|
|
22
|
+
* Missing documentation for Vue plugins ([8b00cbc](https://github.com/IEBH/TERA-fy/commit/8b00cbcd39d1089fd54589e9e71437f80923a68d))
|
|
23
|
+
|
|
24
|
+
### fix
|
|
25
|
+
|
|
26
|
+
* Ported bugfixes from "typescript" branch ([d6a29e6](https://github.com/IEBH/TERA-fy/commit/d6a29e60e11b930daef33d234e77a7ef277d00dc))
|
|
27
|
+
* Treat supabase as a SupabaseClient rather than Supabasey ([7d5fe1d](https://github.com/IEBH/TERA-fy/commit/7d5fe1d2aa7275b4a1a5be0f1182c6a60674876e))
|
|
28
|
+
* Wrong level of nesting when setting inital user credits ([675cd44](https://github.com/IEBH/TERA-fy/commit/675cd445f38183d5aa8dd27a1b8d04a6ed6a6c4b))
|
|
29
|
+
|
|
30
|
+
## [2.0.20](https://github.com/IEBH/TERA-fy/compare/v2.0.18...v2.0.20) (2025-04-10)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### chore
|
|
34
|
+
|
|
35
|
+
* Bump eslint ruleset ([143fc00](https://github.com/IEBH/TERA-fy/commit/143fc006cf7efa69f15e4e8fa7c432339fce6718))
|
|
36
|
+
* Various eslint tidyups ([8ff306e](https://github.com/IEBH/TERA-fy/commit/8ff306e99c4b9cefda1a5314d95c3cd90b16d26d))
|
|
37
|
+
|
|
38
|
+
### devops
|
|
39
|
+
|
|
40
|
+
* Add /dist to gitignore ([13c8d19](https://github.com/IEBH/TERA-fy/commit/13c8d190858150e0219d9e7ecc1196ab61c0bfea))
|
|
41
|
+
* Clear `dist` directory ([c7583aa](https://github.com/IEBH/TERA-fy/commit/c7583aa403008cea2be7ce224b7cc3d06110bc18))
|
|
42
|
+
* Force add dist/ to avoid issues with .gitignore rules ([ea84f5c](https://github.com/IEBH/TERA-fy/commit/ea84f5cb958405006bf37fe01499ef8e1cca32c6))
|
|
43
|
+
* Untrack dist between subsequent releases ([747ef0a](https://github.com/IEBH/TERA-fy/commit/747ef0a912329122f71484b1a0c7df8816e9f111))
|
|
5
44
|
|
|
6
45
|
### docs
|
|
7
46
|
|
|
@@ -9,6 +48,7 @@
|
|
|
9
48
|
|
|
10
49
|
### fix
|
|
11
50
|
|
|
51
|
+
* Ported bugfixes from "typescript" branch ([d6a29e6](https://github.com/IEBH/TERA-fy/commit/d6a29e60e11b930daef33d234e77a7ef277d00dc))
|
|
12
52
|
* Treat supabase as a SupabaseClient rather than Supabasey ([7d5fe1d](https://github.com/IEBH/TERA-fy/commit/7d5fe1d2aa7275b4a1a5be0f1182c6a60674876e))
|
|
13
53
|
* Wrong level of nesting when setting inital user credits ([675cd44](https://github.com/IEBH/TERA-fy/commit/675cd445f38183d5aa8dd27a1b8d04a6ed6a6c4b))
|
|
14
54
|
|