@trackunit/iris-app-build-utilities 2.4.14 → 2.4.16-alpha-8f80d2f100d.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.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,3 @@
1
- ## 2.4.14 (2026-08-20)
2
-
3
- This was a version bump only for iris-app-build-utilities to align it with other projects, there were no code changes.
4
-
5
1
  ## 2.4.13 (2026-08-20)
6
2
 
7
3
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-build-utilities",
3
- "version": "2.4.14",
3
+ "version": "2.4.16-alpha-8f80d2f100d.0",
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.4.9",
16
+ "@trackunit/iris-app-api": "2.4.11-alpha-8f80d2f100d.0",
17
17
  "@nx/devkit": "23.1.0",
18
- "@trackunit/shared-utils": "1.16.20",
18
+ "@trackunit/shared-utils": "1.16.21-alpha-8f80d2f100d.0",
19
19
  "http-proxy-middleware": "3.0.5",
20
20
  "marked": "14.1.2",
21
21
  "pacote": "^21.0.4",
@@ -4,7 +4,7 @@
4
4
  * Build utilities must not depend on core-host (wrong dependency direction);
5
5
  * keep this string in sync with the host constant (GLU-1660).
6
6
  */
7
- export declare const CUTOFF_VERSION = "2.5.13";
7
+ export declare const CUTOFF_VERSION = "2.5.12";
8
8
  /**
9
9
  * Advisory warning when an app's resolved SDK version is at/above the content-inset
10
10
  * cutoff but the app source has not adopted `p-content-space`. Matches the
@@ -9,7 +9,7 @@ const checkContentSpaceAdoption_1 = require("./checkContentSpaceAdoption");
9
9
  * Build utilities must not depend on core-host (wrong dependency direction);
10
10
  * keep this string in sync with the host constant (GLU-1660).
11
11
  */
12
- exports.CUTOFF_VERSION = "2.5.13";
12
+ exports.CUTOFF_VERSION = "2.5.12";
13
13
  /**
14
14
  * Advisory warning when an app's resolved SDK version is at/above the content-inset
15
15
  * cutoff but the app source has not adopted `p-content-space`. Matches the
@@ -1 +1 @@
1
- {"version":3,"file":"checkContentInsetAdoption.js","sourceRoot":"","sources":["../../../../../libs/iris-app-sdk/iris-app-build-utilities/src/checkContentInsetAdoption.ts"],"names":[],"mappings":";;;AAAA,mCAAmD;AACnD,2EAAwE;AAExE;;;;;GAKG;AACU,QAAA,cAAc,GAAG,QAAQ,CAAC;AAEvC;;;;;;;GAOG;AACI,MAAM,yBAAyB,GAAG,CAAC,UAA8B,EAAE,MAAc,EAAQ,EAAE;IAChG,IAAI,UAAU,KAAK,SAAS,IAAI,IAAA,cAAW,EAAC,UAAU,CAAC,KAAK,IAAI,EAAE,CAAC;QACjE,OAAO;IACT,CAAC;IACD,IAAI,CAAC,IAAA,YAAG,EAAC,UAAU,EAAE,sBAAc,CAAC,EAAE,CAAC;QACrC,OAAO;IACT,CAAC;IACD,IAAI,IAAA,qDAAyB,EAAC,MAAM,CAAC,EAAE,CAAC;QACtC,OAAO;IACT,CAAC;IAED,sCAAsC;IACtC,OAAO,CAAC,IAAI,CACV,mBAAmB,UAAU,0CAA0C,sBAAc,sEAAsE;QACzJ,mIAAmI,CACtI,CAAC;AACJ,CAAC,CAAC;AAhBW,QAAA,yBAAyB,6BAgBpC","sourcesContent":["import { gte, valid as validSemver } from \"semver\";\nimport { checkContentSpaceAdoption } from \"./checkContentSpaceAdoption\";\n\n/**\n * Duplicate of `CUTOFF_VERSION` from\n * `libs/iris-app-runtime/core-host/src/contentInsetCutoff.ts`.\n * Build utilities must not depend on core-host (wrong dependency direction);\n * keep this string in sync with the host constant (GLU-1660).\n */\nexport const CUTOFF_VERSION = \"2.5.13\";\n\n/**\n * Advisory warning when an app's resolved SDK version is at/above the content-inset\n * cutoff but the app source has not adopted `p-content-space`. Matches the\n * `versionCheck`/`console.warn` tone in `checkPackageVersion` — never throws.\n *\n * @param sdkVersion - Installed `@trackunit/iris-app` version (from `resolveSdkVersion`), if any\n * @param appDir - Absolute path to the Iris app project root\n */\nexport const checkContentInsetAdoption = (sdkVersion: string | undefined, appDir: string): void => {\n if (sdkVersion === undefined || validSemver(sdkVersion) === null) {\n return;\n }\n if (!gte(sdkVersion, CUTOFF_VERSION)) {\n return;\n }\n if (checkContentSpaceAdoption(appDir)) {\n return;\n }\n\n // eslint-disable-next-line no-console\n console.warn(\n `⚠️ Iris App SDK ${sdkVersion} is at/above the content-inset cutoff (${CUTOFF_VERSION}) but this app's source does not reference \\`p-content-space\\`. 👈\\n` +\n ` Add \\`p-content-space\\` to own your content inset (or the host will apply none). See the Iris App migration guide for details.\\n`\n );\n};\n"]}
1
+ {"version":3,"file":"checkContentInsetAdoption.js","sourceRoot":"","sources":["../../../../../libs/iris-app-sdk/iris-app-build-utilities/src/checkContentInsetAdoption.ts"],"names":[],"mappings":";;;AAAA,mCAAmD;AACnD,2EAAwE;AAExE;;;;;GAKG;AACU,QAAA,cAAc,GAAG,QAAQ,CAAC;AAEvC;;;;;;;GAOG;AACI,MAAM,yBAAyB,GAAG,CAAC,UAA8B,EAAE,MAAc,EAAQ,EAAE;IAChG,IAAI,UAAU,KAAK,SAAS,IAAI,IAAA,cAAW,EAAC,UAAU,CAAC,KAAK,IAAI,EAAE,CAAC;QACjE,OAAO;IACT,CAAC;IACD,IAAI,CAAC,IAAA,YAAG,EAAC,UAAU,EAAE,sBAAc,CAAC,EAAE,CAAC;QACrC,OAAO;IACT,CAAC;IACD,IAAI,IAAA,qDAAyB,EAAC,MAAM,CAAC,EAAE,CAAC;QACtC,OAAO;IACT,CAAC;IAED,sCAAsC;IACtC,OAAO,CAAC,IAAI,CACV,mBAAmB,UAAU,0CAA0C,sBAAc,sEAAsE;QACzJ,mIAAmI,CACtI,CAAC;AACJ,CAAC,CAAC;AAhBW,QAAA,yBAAyB,6BAgBpC","sourcesContent":["import { gte, valid as validSemver } from \"semver\";\nimport { checkContentSpaceAdoption } from \"./checkContentSpaceAdoption\";\n\n/**\n * Duplicate of `CUTOFF_VERSION` from\n * `libs/iris-app-runtime/core-host/src/contentInsetCutoff.ts`.\n * Build utilities must not depend on core-host (wrong dependency direction);\n * keep this string in sync with the host constant (GLU-1660).\n */\nexport const CUTOFF_VERSION = \"2.5.12\";\n\n/**\n * Advisory warning when an app's resolved SDK version is at/above the content-inset\n * cutoff but the app source has not adopted `p-content-space`. Matches the\n * `versionCheck`/`console.warn` tone in `checkPackageVersion` — never throws.\n *\n * @param sdkVersion - Installed `@trackunit/iris-app` version (from `resolveSdkVersion`), if any\n * @param appDir - Absolute path to the Iris app project root\n */\nexport const checkContentInsetAdoption = (sdkVersion: string | undefined, appDir: string): void => {\n if (sdkVersion === undefined || validSemver(sdkVersion) === null) {\n return;\n }\n if (!gte(sdkVersion, CUTOFF_VERSION)) {\n return;\n }\n if (checkContentSpaceAdoption(appDir)) {\n return;\n }\n\n // eslint-disable-next-line no-console\n console.warn(\n `⚠️ Iris App SDK ${sdkVersion} is at/above the content-inset cutoff (${CUTOFF_VERSION}) but this app's source does not reference \\`p-content-space\\`. 👈\\n` +\n ` Add \\`p-content-space\\` to own your content inset (or the host will apply none). See the Iris App migration guide for details.\\n`\n );\n};\n"]}