@iebh/tera-fy 1.11.4 → 1.11.5

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.11.5](https://github.com/IEBH/TERA-fy/compare/v1.11.4...v1.11.5) (2024-07-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Idiot level typo caused state to always revert back to baseline for Vue@3 plugins ([e237a68](https://github.com/IEBH/TERA-fy/commit/e237a680ade686efd0e1bdee930ce9e5d77690d6))
9
+
3
10
  ## [1.11.4](https://github.com/IEBH/TERA-fy/compare/v1.11.0...v1.11.4) (2024-07-02)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iebh/tera-fy",
3
- "version": "1.11.4",
3
+ "version": "1.11.5",
4
4
  "description": "TERA website worker",
5
5
  "scripts": {
6
6
  "dev": "esbuild --platform=browser --format=esm --bundle lib/terafy.client.js --outfile=dist/terafy.js --minify --serve --servedir=.",
package/plugins/vue3.js CHANGED
@@ -78,7 +78,7 @@ export default class TeraFyPluginVue extends TeraFyPluginBase {
78
78
  }
79
79
 
80
80
  this.createProjectStatePatch(newVal, oldVal);
81
- oldVal = cloneDeep(snapshot);
81
+ oldVal = cloneDeep(newVal); // Update old state the the last seen value
82
82
  },
83
83
  {
84
84
  deep: true,