@tsrx/vue 0.1.24 → 0.1.25

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 (2) hide show
  1. package/package.json +2 -2
  2. package/src/transform.js +1 -1
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Vue compiler built on @tsrx/core",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.1.24",
6
+ "version": "0.1.25",
7
7
  "type": "module",
8
8
  "publishConfig": {
9
9
  "access": "public"
@@ -39,7 +39,7 @@
39
39
  "esrap": "^2.2.8",
40
40
  "is-reference": "^3.0.3",
41
41
  "zimmerframe": "^1.1.2",
42
- "@tsrx/core": "0.1.24"
42
+ "@tsrx/core": "0.1.25"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "vue": ">=3.5",
package/src/transform.js CHANGED
@@ -49,7 +49,7 @@ const vue_platform = {
49
49
  },
50
50
  hooks: {
51
51
  // Hoist to module scope
52
- // in the regular client transform — same trade-off as React, where one
52
+ // in the regular client transform — one
53
53
  // definition per helper keeps bundles small and source mappings 1:1
54
54
  // for editor IntelliSense. The `compile_to_volar_mappings` entry point
55
55
  // opts back out so Volar's type-only output keeps helpers inline,