@trackunit/create-iris-app-workspace 0.0.286 → 0.0.288
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 +10 -0
- package/bin/index.js +11 -14
- package/bin/index.js.map +1 -1
- package/package.json +5 -4
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.288](https://github.com/Trackunit/manager/compare/create-iris-app-workspace/0.0.287...create-iris-app-workspace/0.0.288) (2024-08-12)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `iris-app` updated to version `0.0.287`
|
|
10
|
+
## [0.0.287](https://github.com/Trackunit/manager/compare/create-iris-app-workspace/0.0.286...create-iris-app-workspace/0.0.287) (2024-08-12)
|
|
11
|
+
|
|
12
|
+
### Dependency Updates
|
|
13
|
+
|
|
14
|
+
* `iris-app` updated to version `0.0.286`
|
|
5
15
|
## [0.0.286](https://github.com/Trackunit/manager/compare/create-iris-app-workspace/0.0.285...create-iris-app-workspace/0.0.286) (2024-08-09)
|
|
6
16
|
|
|
7
17
|
### Dependency Updates
|
package/bin/index.js
CHANGED
|
@@ -2,22 +2,19 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
/* eslint-disable no-console */
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
const tslib_1 = require("tslib");
|
|
6
5
|
const create_nx_workspace_1 = require("create-nx-workspace");
|
|
7
|
-
function main() {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
packageManager: "npm",
|
|
18
|
-
});
|
|
19
|
-
console.log(`Successfully created the workspace: ${directory}.`);
|
|
6
|
+
async function main() {
|
|
7
|
+
const name = process.argv[2];
|
|
8
|
+
if (!name) {
|
|
9
|
+
throw new Error("Please provide a name for the workspace");
|
|
10
|
+
}
|
|
11
|
+
console.log(`Creating the workspace: ${name}`);
|
|
12
|
+
const { directory } = await (0, create_nx_workspace_1.createWorkspace)(`@trackunit/iris-app@latest`, {
|
|
13
|
+
name,
|
|
14
|
+
nxCloud: "skip",
|
|
15
|
+
packageManager: "npm",
|
|
20
16
|
});
|
|
17
|
+
console.log(`Successfully created the workspace: ${directory}.`);
|
|
21
18
|
}
|
|
22
19
|
main();
|
|
23
20
|
//# sourceMappingURL=index.js.map
|
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
|
|
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"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/create-iris-app-workspace",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.288",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.x"
|
|
@@ -10,8 +10,9 @@
|
|
|
10
10
|
"create-iris-app-workspace": "./bin/index.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"create-nx-workspace": "
|
|
13
|
+
"create-nx-workspace": "19.5.6",
|
|
14
14
|
"tslib": "^2.6.2"
|
|
15
15
|
},
|
|
16
|
-
"main": "./bin/index.js"
|
|
17
|
-
|
|
16
|
+
"main": "./bin/index.js",
|
|
17
|
+
"types": "./bin/index.d.ts"
|
|
18
|
+
}
|