@trackunit/eslint-plugin-trackunit 0.6.10 → 0.6.11

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,17 @@
1
+ ## 0.6.11 (2026-06-01)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **GLU-1179:** add @trackunit/iris-app-playwright and @trackunit/nx-playwright skeleton libraries ([5f03b8c460e](https://github.com/Trackunit/manager/commit/5f03b8c460e))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated shared-utils to 1.15.11
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - Claude
14
+
1
15
  ## 0.6.10 (2026-05-28)
2
16
 
3
17
  ### 🧱 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.11",
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);