@trackunit/iris-app-build-utilities 2.3.5 → 2.3.7

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,16 @@
1
+ ## 2.3.7 (2026-08-13)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated iris-app-api to 2.3.7
6
+ - Updated shared-utils to 1.16.5
7
+
8
+ ## 2.3.6 (2026-08-12)
9
+
10
+ ### 🧱 Updated Dependencies
11
+
12
+ - Updated iris-app-api to 2.3.6
13
+
1
14
  ## 2.3.5 (2026-08-12)
2
15
 
3
16
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-build-utilities",
3
- "version": "2.3.5",
3
+ "version": "2.3.7",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -13,9 +13,9 @@
13
13
  "@nx/react": "23.1.0",
14
14
  "tslib": "^2.6.2",
15
15
  "csp-header": "^6.3.1",
16
- "@trackunit/iris-app-api": "2.3.5",
16
+ "@trackunit/iris-app-api": "2.3.7",
17
17
  "@nx/devkit": "23.1.0",
18
- "@trackunit/shared-utils": "1.16.4",
18
+ "@trackunit/shared-utils": "1.16.5",
19
19
  "http-proxy-middleware": "3.0.5",
20
20
  "marked": "14.1.2",
21
21
  "pacote": "^21.0.4",
@@ -24,7 +24,7 @@ const versionCheck = (pkg, localRange, range, throwError = true) => {
24
24
  }
25
25
  else {
26
26
  // eslint-disable-next-line no-console
27
- console.warn("⚠️ " + msg + "\n");
27
+ console.warn(`⚠️ ${msg}\n`);
28
28
  return true;
29
29
  }
30
30
  }
@@ -104,7 +104,7 @@ const getAssetsPattern = (options) => {
104
104
  * the extensionId prefix for runtime loading, but we need the original path for copying.
105
105
  */
106
106
  const stripExtensionIdPrefix = (iconPath, extensionId) => {
107
- if (iconPath.startsWith(extensionId + "/")) {
107
+ if (iconPath.startsWith(`${extensionId}/`)) {
108
108
  return iconPath.substring(extensionId.length + 1);
109
109
  }
110
110
  if (iconPath.startsWith(extensionId)) {
@@ -19,7 +19,7 @@ const getTailwindContentForApp = (options) => {
19
19
  }
20
20
  return [
21
21
  ...(0, tailwind_1.createGlobPatternsForDependencies)(options.appDir, "/**/!(*.stories|*.spec).{tsx,jsx,ts,js,html}"),
22
- nxRootDir + "/node_modules/@trackunit/*/**/!(*.stories|*.spec).{tsx,jsx,ts,js,html}",
22
+ `${nxRootDir}/node_modules/@trackunit/*/**/!(*.stories|*.spec).{tsx,jsx,ts,js,html}`,
23
23
  ];
24
24
  };
25
25
  exports.getTailwindContentForApp = getTailwindContentForApp;
@@ -11,7 +11,7 @@ const fixUrl = (image, extensionId) => {
11
11
  image.path = (extensionId + image.path.toString());
12
12
  }
13
13
  else {
14
- image.path = (extensionId + "/" + image.path.toString());
14
+ image.path = `${extensionId}/${image.path.toString()}`;
15
15
  }
16
16
  }
17
17
  };