@trackunit/create-iris-app-workspace 2.0.51 → 2.0.53

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
+ ## 2.0.53 (2026-07-02)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **migrations:** standard migration scaffold for all publish:npm packages [GLU-1354] ([#24119](https://github.com/Trackunit/manager/pull/24119))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Cursor @cursoragent
10
+ - Mikkel Thorbjørn Andersen @mta-trackunit
11
+
12
+ ## 2.0.52 (2026-07-02)
13
+
14
+ This was a version bump only for create-iris-app-workspace to align it with other projects, there were no code changes.
15
+
1
16
  ## 2.0.51 (2026-07-02)
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.
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=entry.js.map
@@ -0,0 +1,3 @@
1
+ {
2
+ "generators": {}
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/create-iris-app-workspace",
3
- "version": "2.0.51",
3
+ "version": "2.0.53",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "engines": {
6
6
  "node": ">=24.x"
@@ -13,6 +13,7 @@
13
13
  "create-nx-workspace": "22.7.5",
14
14
  "tslib": "^2.6.2"
15
15
  },
16
+ "migrations": "./migrations.json",
16
17
  "types": "./bin/index.d.ts",
17
18
  "main": "./bin/index.js"
18
19
  }
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,KAAK,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\nvoid main();\n"]}