@trackunit/eslint-plugin-trackunit 0.6.10 → 0.6.12

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,3 +1,23 @@
1
+ ## 0.6.12 (2026-06-02)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated shared-utils to 1.15.12
6
+
7
+ ## 0.6.11 (2026-06-01)
8
+
9
+ ### 🚀 Features
10
+
11
+ - **GLU-1179:** add @trackunit/iris-app-playwright and @trackunit/nx-playwright skeleton libraries ([5f03b8c460e](https://github.com/Trackunit/manager/commit/5f03b8c460e))
12
+
13
+ ### 🧱 Updated Dependencies
14
+
15
+ - Updated shared-utils to 1.15.11
16
+
17
+ ### ❤️ Thank You
18
+
19
+ - Claude
20
+
1
21
  ## 0.6.10 (2026-05-28)
2
22
 
3
23
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/eslint-plugin-trackunit",
3
- "version": "0.6.10",
3
+ "version": "0.6.12",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -54,7 +54,7 @@ exports.noInternalGraphqlWhenTaggedWithGqlPublic = createRule({
54
54
  };
55
55
  return {
56
56
  Program: _node => {
57
- const sourceFilePath = context.getFilename();
57
+ const sourceFilePath = context.filename;
58
58
  if (sourceFilePath.endsWith("/project.json")) {
59
59
  const projectJsonString = fs.readFileSync(sourceFilePath, "utf8");
60
60
  const projectJson = JSON.parse(projectJsonString);