@trackunit/iris-app 0.0.169 → 0.0.170
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 +2 -0
- package/package.json +2 -2
- package/src/generators/create/files/iris-app-manifest.ts__template__ +2 -2
- package/src/generators/extend/files/ADMIN_EXTENSION/extension-manifest.ts__template__ +2 -2
- package/src/generators/extend/files/ASSET_HOME_EXTENSION/extension-manifest.ts__template__ +2 -2
- package/src/generators/extend/files/FLEET_EXTENSION/extension-manifest.ts__template__ +2 -2
- package/src/generators/extend/files/IRIS_APP_SETTINGS_EXTENSION/extension-manifest.ts__template__ +2 -2
- package/src/generators/extend/files/REPORT_EXTENSION/extension-manifest.ts__template__ +2 -2
- package/src/generators/extend/files/SITE_HOME_EXTENSION/extension-manifest.ts__template__ +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.0.170](https://github.com/Trackunit/manager/compare/iris-app/0.0.169...iris-app/0.0.170) (2023-02-27)
|
|
6
|
+
|
|
5
7
|
## [0.0.169](https://github.com/Trackunit/manager/compare/iris-app/0.0.168...iris-app/0.0.169) (2023-02-21)
|
|
6
8
|
|
|
7
9
|
## [0.0.168](https://github.com/Trackunit/manager/compare/iris-app/0.0.167...iris-app/0.0.168) (2023-02-02)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.170",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@trackunit/iris-app-api": "0.0.76",
|
|
19
19
|
"node-fetch": "2.6.8",
|
|
20
20
|
"rxjs": "7.6.0",
|
|
21
|
-
"libnpmpublish": "7.0
|
|
21
|
+
"libnpmpublish": "7.1.0",
|
|
22
22
|
"open": "8.4.0",
|
|
23
23
|
"pacote": "13.6.2",
|
|
24
24
|
"semver": "7.3.8",
|
|
@@ -3,7 +3,7 @@ import { IrisAppManifest } from '@trackunit/iris-app-api';
|
|
|
3
3
|
const nxPackageJson = require("<%= toNxRoot %>package.json");
|
|
4
4
|
const packageJson = require("./package.json");
|
|
5
5
|
|
|
6
|
-
const
|
|
6
|
+
const irisAppManifest: IrisAppManifest = {
|
|
7
7
|
specVersion: "1.0",
|
|
8
8
|
moduleFederationName: packageJson.name,
|
|
9
9
|
dependencies: nxPackageJson.dependencies || {},
|
|
@@ -25,4 +25,4 @@ const IrisAppManifest: IrisAppManifest = {
|
|
|
25
25
|
extensions: [],
|
|
26
26
|
};
|
|
27
27
|
|
|
28
|
-
export default
|
|
28
|
+
export default irisAppManifest;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AdminExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const irisAppManifest: AdminExtensionManifest = {
|
|
4
4
|
id: "<%= projectName %>",
|
|
5
5
|
type: "ADMIN_EXTENSION",
|
|
6
6
|
sourceRoot: "<%= sourceRoot %>",
|
|
@@ -10,4 +10,4 @@ const IrisAppManifest: AdminExtensionManifest = {
|
|
|
10
10
|
}
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
export default
|
|
13
|
+
export default irisAppManifest;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AssetHomeExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const irisAppManifest: AssetHomeExtensionManifest = {
|
|
4
4
|
id: "<%= projectName %>",
|
|
5
5
|
type: "ASSET_HOME_EXTENSION",
|
|
6
6
|
sourceRoot: "<%= sourceRoot %>",
|
|
@@ -10,4 +10,4 @@ const IrisAppManifest: AssetHomeExtensionManifest = {
|
|
|
10
10
|
}
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
export default
|
|
13
|
+
export default irisAppManifest;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FleetExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const irisAppManifest: FleetExtensionManifest = {
|
|
4
4
|
id: "<%= projectName %>",
|
|
5
5
|
type: "FLEET_EXTENSION",
|
|
6
6
|
sourceRoot: "<%= sourceRoot %>",
|
|
@@ -11,4 +11,4 @@ const IrisAppManifest: FleetExtensionManifest = {
|
|
|
11
11
|
}
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
-
export default
|
|
14
|
+
export default irisAppManifest;
|
package/src/generators/extend/files/IRIS_APP_SETTINGS_EXTENSION/extension-manifest.ts__template__
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { IrisAppSettingsExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const irisAppManifest: IrisAppSettingsExtensionManifest = {
|
|
4
4
|
id: "<%= projectName %>",
|
|
5
5
|
type: "IRIS_APP_SETTINGS_EXTENSION",
|
|
6
6
|
sourceRoot: "<%= sourceRoot %>"
|
|
7
7
|
};
|
|
8
8
|
|
|
9
|
-
export default
|
|
9
|
+
export default irisAppManifest;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReportExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const irisAppManifest: ReportExtensionManifest = {
|
|
4
4
|
id: "<%= projectName %>",
|
|
5
5
|
type: "REPORT_EXTENSION",
|
|
6
6
|
sourceRoot: "<%= sourceRoot %>",
|
|
@@ -12,4 +12,4 @@ const IrisAppManifest: ReportExtensionManifest = {
|
|
|
12
12
|
},
|
|
13
13
|
};
|
|
14
14
|
|
|
15
|
-
export default
|
|
15
|
+
export default irisAppManifest;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SiteHomeExtensionManifest } from '@trackunit/iris-app-api';
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const irisAppManifest: SiteHomeExtensionManifest = {
|
|
4
4
|
id: "<%= projectName %>",
|
|
5
5
|
type: "SITE_HOME_EXTENSION",
|
|
6
6
|
sourceRoot: "<%= sourceRoot %>",
|
|
@@ -10,4 +10,4 @@ const IrisAppManifest: SiteHomeExtensionManifest = {
|
|
|
10
10
|
}
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
export default
|
|
13
|
+
export default irisAppManifest;
|