@trackunit/create-iris-app-workspace 0.0.245 → 0.0.247

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
@@ -2,6 +2,16 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.0.247](https://github.com/Trackunit/manager/compare/create-iris-app-workspace/0.0.246...create-iris-app-workspace/0.0.247) (2024-04-24)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `iris-app` updated to version `0.0.246`
10
+ ## [0.0.246](https://github.com/Trackunit/manager/compare/create-iris-app-workspace/0.0.245...create-iris-app-workspace/0.0.246) (2024-04-19)
11
+
12
+ ### Dependency Updates
13
+
14
+ * `iris-app` updated to version `0.0.245`
5
15
  ## [0.0.245](https://github.com/Trackunit/manager/compare/create-iris-app-workspace/0.0.244...create-iris-app-workspace/0.0.245) (2024-04-18)
6
16
 
7
17
  ### Dependency Updates
package/bin/index.js CHANGED
@@ -13,7 +13,7 @@ function main() {
13
13
  console.log(`Creating the workspace: ${name}`);
14
14
  const { directory } = yield (0, create_nx_workspace_1.createWorkspace)(`@trackunit/iris-app@latest`, {
15
15
  name,
16
- nxCloud: false,
16
+ nxCloud: "skip",
17
17
  packageManager: "npm",
18
18
  });
19
19
  console.log(`Successfully created the workspace: ${directory}.`);
package/bin/index.js.map CHANGED
@@ -1 +1 @@
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,SAAe,IAAI;;QACjB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC7B,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;SAC5D;QAED,OAAO,CAAC,GAAG,CAAC,2BAA2B,IAAI,EAAE,CAAC,CAAC;QAE/C,MAAM,EAAE,SAAS,EAAE,GAAG,MAAM,IAAA,qCAAe,EAAC,4BAA4B,EAAE;YACxE,IAAI;YACJ,OAAO,EAAE,KAAK;YACd,cAAc,EAAE,KAAK;SACtB,CAAC,CAAC;QAEH,OAAO,CAAC,GAAG,CAAC,uCAAuC,SAAS,GAAG,CAAC,CAAC;IACnE,CAAC;CAAA;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: false,\n packageManager: \"npm\",\n });\n\n console.log(`Successfully created the workspace: ${directory}.`);\n}\n\nmain();\n"]}
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,SAAe,IAAI;;QACjB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAC7B,IAAI,CAAC,IAAI,EAAE,CAAC;YACV,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;QAC7D,CAAC;QAED,OAAO,CAAC,GAAG,CAAC,2BAA2B,IAAI,EAAE,CAAC,CAAC;QAE/C,MAAM,EAAE,SAAS,EAAE,GAAG,MAAM,IAAA,qCAAe,EAAC,4BAA4B,EAAE;YACxE,IAAI;YACJ,OAAO,EAAE,MAAM;YACf,cAAc,EAAE,KAAK;SACtB,CAAC,CAAC;QAEH,OAAO,CAAC,GAAG,CAAC,uCAAuC,SAAS,GAAG,CAAC,CAAC;IACnE,CAAC;CAAA;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"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/create-iris-app-workspace",
3
- "version": "0.0.245",
3
+ "version": "0.0.247",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "engines": {
6
6
  "node": ">=18.x"
@@ -10,7 +10,7 @@
10
10
  "create-iris-app-workspace": "./bin/index.js"
11
11
  },
12
12
  "dependencies": {
13
- "create-nx-workspace": "17.1.3",
13
+ "create-nx-workspace": "18.3.3",
14
14
  "tslib": "^2.6.2"
15
15
  },
16
16
  "main": "./bin/index.js"