@alterior/runtime 3.6.1 → 3.6.2
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/dist/modules.js +1 -1
- package/dist.esm/modules.js +1 -1
- package/package.json +2 -2
- package/src/modules.ts +1 -1
package/dist/modules.js
CHANGED
|
@@ -129,7 +129,7 @@ class Runtime {
|
|
|
129
129
|
.map(x => x.class);
|
|
130
130
|
rolesService.configure({ mode: 'only', roles });
|
|
131
131
|
}
|
|
132
|
-
else if (arg == '-
|
|
132
|
+
else if (arg == '-x' || arg == '--roles-skip') {
|
|
133
133
|
let value = getArgumentValue();
|
|
134
134
|
let roles = value.split(',')
|
|
135
135
|
.map(x => allRoles.find(y => y.identifier == x))
|
package/dist.esm/modules.js
CHANGED
|
@@ -124,7 +124,7 @@ export class Runtime {
|
|
|
124
124
|
.map(x => x.class);
|
|
125
125
|
rolesService.configure({ mode: 'only', roles });
|
|
126
126
|
}
|
|
127
|
-
else if (arg == '-
|
|
127
|
+
else if (arg == '-x' || arg == '--roles-skip') {
|
|
128
128
|
let value = getArgumentValue();
|
|
129
129
|
let roles = value.split(',')
|
|
130
130
|
.map(x => allRoles.find(y => y.identifier == x))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alterior/runtime",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.2",
|
|
4
4
|
"description": "Core runtime for Alterior apps",
|
|
5
5
|
"author": "The Alterior Project (https://github.com/alterior-mvc)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"zone.js": "^0.11.4"
|
|
48
48
|
},
|
|
49
49
|
"lernaKick": 1,
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "3d76494c065dfd4167c4653765fd2ade030ad9f4"
|
|
51
51
|
}
|
package/src/modules.ts
CHANGED
|
@@ -151,7 +151,7 @@ export class Runtime {
|
|
|
151
151
|
;
|
|
152
152
|
|
|
153
153
|
rolesService.configure({ mode: 'only', roles });
|
|
154
|
-
} else if (arg == '-
|
|
154
|
+
} else if (arg == '-x' || arg == '--roles-skip') {
|
|
155
155
|
let value = getArgumentValue();
|
|
156
156
|
|
|
157
157
|
let roles = value.split(',')
|