@trackunit/create-iris-app-workspace 1.17.20 → 1.17.22

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,18 @@
1
+ ## 1.17.22 (2026-04-28)
2
+
3
+ This was a version bump only for create-iris-app-workspace to align it with other projects, there were no code changes.
4
+
5
+ ## 1.17.21 (2026-04-28)
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - clear no-floating-promises violations ([2364957a011](https://github.com/Trackunit/manager/commit/2364957a011))
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - Aleksandar Yanev Mihaylov @aleksandarmihaylov
14
+ - Cursor Agent @cursoragent
15
+
1
16
  ## 1.17.20 (2026-04-28)
2
17
 
3
18
  This was a version bump only for create-iris-app-workspace to align it with other projects, there were no code changes.
package/bin/index.js CHANGED
@@ -16,5 +16,5 @@ async function main() {
16
16
  });
17
17
  console.log(`Successfully created the workspace: ${directory}.`);
18
18
  }
19
- main();
19
+ void main();
20
20
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/create-iris-app-workspace",
3
- "version": "1.17.20",
3
+ "version": "1.17.22",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "engines": {
6
6
  "node": ">=24.x"
package/bin/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/iris-app-sdk/create-iris-app-workspace/bin/index.ts"],"names":[],"mappings":";;AACA,+BAA+B;;AAE/B,6DAAsD;AAEtD,KAAK,UAAU,IAAI;IACjB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC7B,IAAI,CAAC,IAAI,EAAE,CAAC;QACV,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;IAC7D,CAAC;IAED,OAAO,CAAC,GAAG,CAAC,2BAA2B,IAAI,EAAE,CAAC,CAAC;IAE/C,MAAM,EAAE,SAAS,EAAE,GAAG,MAAM,IAAA,qCAAe,EAAC,4BAA4B,EAAE;QACxE,IAAI;QACJ,OAAO,EAAE,MAAM;QACf,cAAc,EAAE,KAAK;KACtB,CAAC,CAAC;IAEH,OAAO,CAAC,GAAG,CAAC,uCAAuC,SAAS,GAAG,CAAC,CAAC;AACnE,CAAC;AAED,IAAI,EAAE,CAAC","sourcesContent":["#!/usr/bin/env node\n/* eslint-disable no-console */\n\nimport { createWorkspace } from \"create-nx-workspace\";\n\nasync function main() {\n const name = process.argv[2];\n if (!name) {\n throw new Error(\"Please provide a name for the workspace\");\n }\n\n console.log(`Creating the workspace: ${name}`);\n\n const { directory } = await createWorkspace(`@trackunit/iris-app@latest`, {\n name,\n nxCloud: \"skip\",\n packageManager: \"npm\",\n });\n\n console.log(`Successfully created the workspace: ${directory}.`);\n}\n\nmain();\n"]}