@gwigz/slua-tstl-plugin 0.3.0 → 1.0.0

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/dist/index.js +1 -1
  2. package/package.json +5 -1
package/dist/index.js CHANGED
@@ -118,7 +118,7 @@ function isDetectedEventType(expr, checker) {
118
118
  return type.symbol?.name === "DetectedEvent";
119
119
  }
120
120
  /**
121
- * Returns true when `node` is `detectedEvent.index` a property access
121
+ * Returns true when `node` is `detectedEvent.index`, a property access
122
122
  * on a `DetectedEvent` reading the `.index` field.
123
123
  */
124
124
  function isDetectedEventIndex(node, checker) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gwigz/slua-tstl-plugin",
3
- "version": "0.3.0",
3
+ "version": "1.0.0",
4
4
  "description": "TypeScriptToLua plugin for targeting Second Life's SLua runtime",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -20,6 +20,9 @@
20
20
  "default": "./dist/index.js"
21
21
  }
22
22
  },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
23
26
  "scripts": {
24
27
  "build": "tsc",
25
28
  "test": "bun test"
@@ -28,6 +31,7 @@
28
31
  "typescript-to-lua": "^1.33.0"
29
32
  },
30
33
  "peerDependencies": {
34
+ "@gwigz/slua-types": "^1.0.0",
31
35
  "typescript": "~5.9.3"
32
36
  }
33
37
  }