@openmrs/esm-globals 3.4.1-pre.133 → 3.4.1-pre.149
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/.turbo/turbo-build.log +12 -12
- package/package.json +2 -2
- package/src/types.ts +3 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
6
|
-
[
|
|
7
|
-
[
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
1
|
+
[33m@openmrs/esm-globals:build: [0mcache hit, replaying output [2mcbd116041c2ff02c[0m
|
|
2
|
+
[33m@openmrs/esm-globals:build: [0m$ webpack --mode=production
|
|
3
|
+
[33m@openmrs/esm-globals:build: [0masset [1m[32mopenmrs-esm-globals.js[39m[22m 3.52 KiB [1m[32m[emitted][39m[22m [1m[32m[minimized][39m[22m (name: main) 1 related asset
|
|
4
|
+
[33m@openmrs/esm-globals:build: [0mruntime modules 1.76 KiB 6 modules
|
|
5
|
+
[33m@openmrs/esm-globals:build: [0morphan modules 2.91 KiB [1m[33m[orphan][39m[22m 3 modules
|
|
6
|
+
[33m@openmrs/esm-globals:build: [0mcacheable modules 6.25 KiB
|
|
7
|
+
[33m@openmrs/esm-globals:build: [0m modules by path [1m../../../node_modules/systemjs-webpack-interop/auto-public-path/*.js[39m[22m 935 bytes
|
|
8
|
+
[33m@openmrs/esm-globals:build: [0m [1m../../../node_modules/systemjs-webpack-interop/auto-public-path/1.js[39m[22m 89 bytes [1m[33m[built][39m[22m [1m[33m[code generated][39m[22m
|
|
9
|
+
[33m@openmrs/esm-globals:build: [0m [1m../../../node_modules/systemjs-webpack-interop/auto-public-path/auto-public-path.js[39m[22m 846 bytes [1m[33m[built][39m[22m [1m[33m[code generated][39m[22m
|
|
10
|
+
[33m@openmrs/esm-globals:build: [0m [1m./src/index.ts + 2 modules[39m[22m 2.97 KiB [1m[33m[built][39m[22m [1m[33m[code generated][39m[22m
|
|
11
|
+
[33m@openmrs/esm-globals:build: [0m [1m../../../node_modules/systemjs-webpack-interop/public-path.js[39m[22m 2.36 KiB [1m[33m[built][39m[22m [1m[33m[code generated][39m[22m
|
|
12
|
+
[33m@openmrs/esm-globals:build: [0mwebpack 5.70.0 compiled [1m[32msuccessfully[39m[22m in 17173 ms
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-globals",
|
|
3
|
-
"version": "3.4.1-pre.
|
|
3
|
+
"version": "3.4.1-pre.149",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"browser": "dist/openmrs-esm-globals.js",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"single-spa": "^5.9.3"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "b6c06cecaa56b82534d0478fc565c6a4968991fd"
|
|
42
42
|
}
|
package/src/types.ts
CHANGED
|
@@ -110,9 +110,10 @@ export interface ComponentDefinition {
|
|
|
110
110
|
*/
|
|
111
111
|
offline?: boolean | object;
|
|
112
112
|
/**
|
|
113
|
-
* Defines the access privilege required for this component, if any.
|
|
113
|
+
* Defines the access privilege(s) required for this component, if any.
|
|
114
|
+
* If more than one privilege is provided, the user must have all specified permissions.
|
|
114
115
|
*/
|
|
115
|
-
privilege?: string;
|
|
116
|
+
privilege?: string | string[];
|
|
116
117
|
/**
|
|
117
118
|
* Defines resources that are loaded when the component should mount.
|
|
118
119
|
*/
|