@trackunit/create-iris-app-workspace 1.12.10 → 1.12.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,11 @@
1
+ ## 1.12.12 (2026-03-09)
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.12.11 (2026-03-06)
6
+
7
+ This was a version bump only for create-iris-app-workspace to align it with other projects, there were no code changes.
8
+
1
9
  ## 1.12.10 (2026-03-06)
2
10
 
3
11
  This was a version bump only for create-iris-app-workspace to align it with other projects, there were no code changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/create-iris-app-workspace",
3
- "version": "1.12.10",
3
+ "version": "1.12.12",
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"]}