not-node 6.1.2 → 6.1.4
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/.vscode/launch.json +19 -0
- package/bin/not-cli.mjs +6 -11
- package/package.json +1 -1
- package/playground/app/front/build/admin.js +21 -29
- package/playground/app/front/build/client.js +21 -29
- package/playground/app/front/build/guest.css +1 -1
- package/playground/app/front/build/guest.js +29 -21
- package/playground/app/front/build/root.js +21 -29
- package/playground/app/front/build/user.js +21 -29
- package/playground/app/front/src/admin/main/index.js +14 -25
- package/playground/app/front/src/client/main/index.js +14 -25
- package/playground/app/front/src/common/index.js +3 -2
- package/playground/app/front/src/common/ws.client.main.js +2 -3
- package/playground/app/front/src/guest/main/index.js +25 -14
- package/playground/app/front/src/root/main/index.js +14 -25
- package/playground/app/front/src/user/main/index.js +14 -25
- package/playground/app/server/app.js +3 -0
- package/playground/app/server/config/common.json +98 -91
- package/playground/app/server/config/development.json +32 -31
- package/playground/app/server/config/production.json +32 -31
- package/playground/app/server/config/stage.json +32 -31
- package/playground/app/server/views/parts/menu.pug +1 -1
- package/playground/app/server/views/parts/overview.pug +1 -1
- package/src/cli/readers/hostname.mjs +1 -1
- package/src/cli/readers/user.mjs +8 -1
- package/src/cli/readers/ws.mjs +12 -0
- package/src/cli/renderers/controllers.mjs +1 -0
- package/src/init/lib/modules.js +1 -2
- package/src/init/lib/routes.js +4 -1
- package/tmpl/dirs/module.front.mjs +1 -1
- package/tmpl/files/app/app.ejs +3 -0
- package/tmpl/files/module.front/common/index.ejs +7 -6
- package/tmpl/files/module.front/common/ws.client.main.ejs +2 -3
- package/tmpl/files/module.front/role/index.ejs +1 -1
|
@@ -50644,9 +50644,8 @@
|
|
|
50644
50644
|
logger: logger,
|
|
50645
50645
|
getToken: function () {
|
|
50646
50646
|
return notCommon$1.getApp().getModel('user', {}).$token({}).then(function (res) {
|
|
50647
|
-
|
|
50648
|
-
|
|
50649
|
-
return res.result.token;
|
|
50647
|
+
notCommon$1.getApp().setWorking('token', res.result);
|
|
50648
|
+
return res.result;
|
|
50650
50649
|
});
|
|
50651
50650
|
},
|
|
50652
50651
|
messenger: {
|
|
@@ -50687,9 +50686,10 @@
|
|
|
50687
50686
|
//options for ws client here
|
|
50688
50687
|
main: {
|
|
50689
50688
|
host: window.location.hostname,
|
|
50689
|
+
port: 3030,
|
|
50690
50690
|
path: 'websocket',
|
|
50691
50691
|
secure: true,
|
|
50692
|
-
ssl:
|
|
50692
|
+
ssl: false
|
|
50693
50693
|
}
|
|
50694
50694
|
}
|
|
50695
50695
|
}
|
|
@@ -50722,34 +50722,42 @@
|
|
|
50722
50722
|
}
|
|
50723
50723
|
|
|
50724
50724
|
let manifest = {
|
|
50725
|
-
environment: "
|
|
50725
|
+
environment: "guest",
|
|
50726
50726
|
router: {
|
|
50727
|
-
root: "/dashboard",
|
|
50728
50727
|
manifest: []
|
|
50729
50728
|
},
|
|
50730
50729
|
crud: {
|
|
50731
50730
|
containerSelector: ".main-container"
|
|
50732
50731
|
},
|
|
50733
50732
|
modules: {
|
|
50734
|
-
user: {
|
|
50735
|
-
|
|
50736
|
-
|
|
50737
|
-
|
|
50738
|
-
src: "/img/icons/icon-w-64.png",
|
|
50739
|
-
width: 48,
|
|
50740
|
-
height: 28
|
|
50741
|
-
},
|
|
50742
|
-
url: "/"
|
|
50733
|
+
user: {
|
|
50734
|
+
loginFormContainerSelector: ".main-container",
|
|
50735
|
+
registerFormContainerSelector: ".main-container"
|
|
50736
|
+
}
|
|
50743
50737
|
},
|
|
50738
|
+
initController: ncInit,
|
|
50744
50739
|
menu: {
|
|
50745
|
-
side: {
|
|
50746
|
-
sections: []
|
|
50747
|
-
},
|
|
50748
50740
|
top: {
|
|
50749
|
-
|
|
50741
|
+
toggleSelector: ".navbar-burger",
|
|
50742
|
+
sections: [],
|
|
50743
|
+
items: [{
|
|
50744
|
+
title: "Вход",
|
|
50745
|
+
url: "/login",
|
|
50746
|
+
priority: 10,
|
|
50747
|
+
showOnTouch: true,
|
|
50748
|
+
type: "button",
|
|
50749
|
+
place: "start"
|
|
50750
|
+
}, {
|
|
50751
|
+
id: 'register',
|
|
50752
|
+
title: 'Регистрация',
|
|
50753
|
+
url: '/register',
|
|
50754
|
+
type: 'button',
|
|
50755
|
+
priority: 11,
|
|
50756
|
+
showOnTouch: true,
|
|
50757
|
+
place: 'start'
|
|
50758
|
+
}]
|
|
50750
50759
|
}
|
|
50751
|
-
}
|
|
50752
|
-
initController: ncInit
|
|
50760
|
+
}
|
|
50753
50761
|
};
|
|
50754
50762
|
|
|
50755
50763
|
var mod_12 = /*#__PURE__*/Object.freeze({
|
|
@@ -59688,9 +59688,8 @@
|
|
|
59688
59688
|
logger: logger,
|
|
59689
59689
|
getToken: function () {
|
|
59690
59690
|
return notCommon$5.getApp().getModel('user', {}).$token({}).then(function (res) {
|
|
59691
|
-
|
|
59692
|
-
|
|
59693
|
-
return res.result.token;
|
|
59691
|
+
notCommon$5.getApp().setWorking('token', res.result);
|
|
59692
|
+
return res.result;
|
|
59694
59693
|
});
|
|
59695
59694
|
},
|
|
59696
59695
|
messenger: {
|
|
@@ -59731,9 +59730,10 @@
|
|
|
59731
59730
|
//options for ws client here
|
|
59732
59731
|
main: {
|
|
59733
59732
|
host: window.location.hostname,
|
|
59733
|
+
port: 3030,
|
|
59734
59734
|
path: 'websocket',
|
|
59735
59735
|
secure: true,
|
|
59736
|
-
ssl:
|
|
59736
|
+
ssl: false
|
|
59737
59737
|
}
|
|
59738
59738
|
}
|
|
59739
59739
|
}
|
|
@@ -59766,42 +59766,34 @@
|
|
|
59766
59766
|
}
|
|
59767
59767
|
|
|
59768
59768
|
let manifest = {
|
|
59769
|
-
environment: "
|
|
59769
|
+
environment: "root",
|
|
59770
59770
|
router: {
|
|
59771
|
+
root: "/dashboard",
|
|
59771
59772
|
manifest: []
|
|
59772
59773
|
},
|
|
59773
59774
|
crud: {
|
|
59774
59775
|
containerSelector: ".main-container"
|
|
59775
59776
|
},
|
|
59776
59777
|
modules: {
|
|
59777
|
-
user: {
|
|
59778
|
-
|
|
59779
|
-
|
|
59780
|
-
|
|
59778
|
+
user: {}
|
|
59779
|
+
},
|
|
59780
|
+
brand: {
|
|
59781
|
+
icon: {
|
|
59782
|
+
src: "/img/icons/icon-w-64.png",
|
|
59783
|
+
width: 48,
|
|
59784
|
+
height: 28
|
|
59785
|
+
},
|
|
59786
|
+
url: "/"
|
|
59781
59787
|
},
|
|
59782
|
-
initController: ncInit,
|
|
59783
59788
|
menu: {
|
|
59789
|
+
side: {
|
|
59790
|
+
sections: []
|
|
59791
|
+
},
|
|
59784
59792
|
top: {
|
|
59785
|
-
|
|
59786
|
-
sections: [],
|
|
59787
|
-
items: [{
|
|
59788
|
-
title: "Вход",
|
|
59789
|
-
url: "/login",
|
|
59790
|
-
priority: 10,
|
|
59791
|
-
showOnTouch: true,
|
|
59792
|
-
type: "button",
|
|
59793
|
-
place: "start"
|
|
59794
|
-
}, {
|
|
59795
|
-
id: 'register',
|
|
59796
|
-
title: 'Регистрация',
|
|
59797
|
-
url: '/register',
|
|
59798
|
-
type: 'button',
|
|
59799
|
-
priority: 11,
|
|
59800
|
-
showOnTouch: true,
|
|
59801
|
-
place: 'start'
|
|
59802
|
-
}]
|
|
59793
|
+
sections: []
|
|
59803
59794
|
}
|
|
59804
|
-
}
|
|
59795
|
+
},
|
|
59796
|
+
initController: ncInit
|
|
59805
59797
|
};
|
|
59806
59798
|
|
|
59807
59799
|
var mod_20 = /*#__PURE__*/Object.freeze({
|
|
@@ -52154,9 +52154,8 @@
|
|
|
52154
52154
|
logger: logger,
|
|
52155
52155
|
getToken: function () {
|
|
52156
52156
|
return notCommon$3.getApp().getModel('user', {}).$token({}).then(function (res) {
|
|
52157
|
-
|
|
52158
|
-
|
|
52159
|
-
return res.result.token;
|
|
52157
|
+
notCommon$3.getApp().setWorking('token', res.result);
|
|
52158
|
+
return res.result;
|
|
52160
52159
|
});
|
|
52161
52160
|
},
|
|
52162
52161
|
messenger: {
|
|
@@ -52197,9 +52196,10 @@
|
|
|
52197
52196
|
//options for ws client here
|
|
52198
52197
|
main: {
|
|
52199
52198
|
host: window.location.hostname,
|
|
52199
|
+
port: 3030,
|
|
52200
52200
|
path: 'websocket',
|
|
52201
52201
|
secure: true,
|
|
52202
|
-
ssl:
|
|
52202
|
+
ssl: false
|
|
52203
52203
|
}
|
|
52204
52204
|
}
|
|
52205
52205
|
}
|
|
@@ -52232,42 +52232,34 @@
|
|
|
52232
52232
|
}
|
|
52233
52233
|
|
|
52234
52234
|
let manifest = {
|
|
52235
|
-
environment: "
|
|
52235
|
+
environment: "user",
|
|
52236
52236
|
router: {
|
|
52237
|
+
root: "/dashboard",
|
|
52237
52238
|
manifest: []
|
|
52238
52239
|
},
|
|
52239
52240
|
crud: {
|
|
52240
52241
|
containerSelector: ".main-container"
|
|
52241
52242
|
},
|
|
52242
52243
|
modules: {
|
|
52243
|
-
user: {
|
|
52244
|
-
|
|
52245
|
-
|
|
52246
|
-
|
|
52244
|
+
user: {}
|
|
52245
|
+
},
|
|
52246
|
+
brand: {
|
|
52247
|
+
icon: {
|
|
52248
|
+
src: "/img/icons/icon-w-64.png",
|
|
52249
|
+
width: 48,
|
|
52250
|
+
height: 28
|
|
52251
|
+
},
|
|
52252
|
+
url: "/"
|
|
52247
52253
|
},
|
|
52248
|
-
initController: ncInit,
|
|
52249
52254
|
menu: {
|
|
52255
|
+
side: {
|
|
52256
|
+
sections: []
|
|
52257
|
+
},
|
|
52250
52258
|
top: {
|
|
52251
|
-
|
|
52252
|
-
sections: [],
|
|
52253
|
-
items: [{
|
|
52254
|
-
title: "Вход",
|
|
52255
|
-
url: "/login",
|
|
52256
|
-
priority: 10,
|
|
52257
|
-
showOnTouch: true,
|
|
52258
|
-
type: "button",
|
|
52259
|
-
place: "start"
|
|
52260
|
-
}, {
|
|
52261
|
-
id: 'register',
|
|
52262
|
-
title: 'Регистрация',
|
|
52263
|
-
url: '/register',
|
|
52264
|
-
type: 'button',
|
|
52265
|
-
priority: 11,
|
|
52266
|
-
showOnTouch: true,
|
|
52267
|
-
place: 'start'
|
|
52268
|
-
}]
|
|
52259
|
+
sections: []
|
|
52269
52260
|
}
|
|
52270
|
-
}
|
|
52261
|
+
},
|
|
52262
|
+
initController: ncInit
|
|
52271
52263
|
};
|
|
52272
52264
|
|
|
52273
52265
|
var mod_12 = /*#__PURE__*/Object.freeze({
|
|
@@ -1,45 +1,34 @@
|
|
|
1
1
|
import ncInit from "../../common/ncInit";
|
|
2
2
|
|
|
3
3
|
let manifest = {
|
|
4
|
-
environment: "
|
|
4
|
+
environment: "admin",
|
|
5
5
|
router: {
|
|
6
|
+
root: "/dashboard",
|
|
6
7
|
manifest: [],
|
|
7
8
|
},
|
|
8
9
|
crud: {
|
|
9
10
|
containerSelector: ".main-container",
|
|
10
11
|
},
|
|
11
12
|
modules: {
|
|
12
|
-
user: {
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
user: {},
|
|
14
|
+
},
|
|
15
|
+
brand: {
|
|
16
|
+
icon: {
|
|
17
|
+
src: "/img/icons/icon-w-64.png",
|
|
18
|
+
width: 48,
|
|
19
|
+
height: 28,
|
|
15
20
|
},
|
|
21
|
+
url: "/",
|
|
16
22
|
},
|
|
17
|
-
initController: ncInit,
|
|
18
23
|
menu: {
|
|
24
|
+
side: {
|
|
25
|
+
sections: [],
|
|
26
|
+
},
|
|
19
27
|
top: {
|
|
20
|
-
toggleSelector: ".navbar-burger",
|
|
21
28
|
sections: [],
|
|
22
|
-
items: [
|
|
23
|
-
{
|
|
24
|
-
title: "Вход",
|
|
25
|
-
url: "/login",
|
|
26
|
-
priority: 10,
|
|
27
|
-
showOnTouch: true,
|
|
28
|
-
type: "button",
|
|
29
|
-
place: "start",
|
|
30
|
-
} , {
|
|
31
|
-
id: 'register',
|
|
32
|
-
title: 'Регистрация',
|
|
33
|
-
url: '/register',
|
|
34
|
-
type: 'button',
|
|
35
|
-
priority: 11,
|
|
36
|
-
showOnTouch:true,
|
|
37
|
-
place: 'start'
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
29
|
},
|
|
41
30
|
},
|
|
31
|
+
initController: ncInit,
|
|
42
32
|
};
|
|
43
33
|
|
|
44
|
-
|
|
45
34
|
export { ncInit, manifest };
|
|
@@ -1,45 +1,34 @@
|
|
|
1
1
|
import ncInit from "../../common/ncInit";
|
|
2
2
|
|
|
3
3
|
let manifest = {
|
|
4
|
-
environment: "
|
|
4
|
+
environment: "client",
|
|
5
5
|
router: {
|
|
6
|
+
root: "/dashboard",
|
|
6
7
|
manifest: [],
|
|
7
8
|
},
|
|
8
9
|
crud: {
|
|
9
10
|
containerSelector: ".main-container",
|
|
10
11
|
},
|
|
11
12
|
modules: {
|
|
12
|
-
user: {
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
user: {},
|
|
14
|
+
},
|
|
15
|
+
brand: {
|
|
16
|
+
icon: {
|
|
17
|
+
src: "/img/icons/icon-w-64.png",
|
|
18
|
+
width: 48,
|
|
19
|
+
height: 28,
|
|
15
20
|
},
|
|
21
|
+
url: "/",
|
|
16
22
|
},
|
|
17
|
-
initController: ncInit,
|
|
18
23
|
menu: {
|
|
24
|
+
side: {
|
|
25
|
+
sections: [],
|
|
26
|
+
},
|
|
19
27
|
top: {
|
|
20
|
-
toggleSelector: ".navbar-burger",
|
|
21
28
|
sections: [],
|
|
22
|
-
items: [
|
|
23
|
-
{
|
|
24
|
-
title: "Вход",
|
|
25
|
-
url: "/login",
|
|
26
|
-
priority: 10,
|
|
27
|
-
showOnTouch: true,
|
|
28
|
-
type: "button",
|
|
29
|
-
place: "start",
|
|
30
|
-
} , {
|
|
31
|
-
id: 'register',
|
|
32
|
-
title: 'Регистрация',
|
|
33
|
-
url: '/register',
|
|
34
|
-
type: 'button',
|
|
35
|
-
priority: 11,
|
|
36
|
-
showOnTouch:true,
|
|
37
|
-
place: 'start'
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
29
|
},
|
|
41
30
|
},
|
|
31
|
+
initController: ncInit,
|
|
42
32
|
};
|
|
43
33
|
|
|
44
|
-
|
|
45
34
|
export { ncInit, manifest };
|
|
@@ -6,9 +6,8 @@ const main = {
|
|
|
6
6
|
getToken: () => {
|
|
7
7
|
return notCommon.getApp().getModel('user', {}).$token({})
|
|
8
8
|
.then((res) => {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
return res.result.token;
|
|
9
|
+
notCommon.getApp().setWorking('token', res.result);
|
|
10
|
+
return res.result;
|
|
12
11
|
});
|
|
13
12
|
},
|
|
14
13
|
messenger: {
|
|
@@ -1,34 +1,45 @@
|
|
|
1
1
|
import ncInit from "../../common/ncInit";
|
|
2
2
|
|
|
3
3
|
let manifest = {
|
|
4
|
-
environment: "
|
|
4
|
+
environment: "guest",
|
|
5
5
|
router: {
|
|
6
|
-
root: "/dashboard",
|
|
7
6
|
manifest: [],
|
|
8
7
|
},
|
|
9
8
|
crud: {
|
|
10
9
|
containerSelector: ".main-container",
|
|
11
10
|
},
|
|
12
11
|
modules: {
|
|
13
|
-
user: {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
icon: {
|
|
17
|
-
src: "/img/icons/icon-w-64.png",
|
|
18
|
-
width: 48,
|
|
19
|
-
height: 28,
|
|
12
|
+
user: {
|
|
13
|
+
loginFormContainerSelector: ".main-container",
|
|
14
|
+
registerFormContainerSelector: ".main-container",
|
|
20
15
|
},
|
|
21
|
-
url: "/",
|
|
22
16
|
},
|
|
17
|
+
initController: ncInit,
|
|
23
18
|
menu: {
|
|
24
|
-
side: {
|
|
25
|
-
sections: [],
|
|
26
|
-
},
|
|
27
19
|
top: {
|
|
20
|
+
toggleSelector: ".navbar-burger",
|
|
28
21
|
sections: [],
|
|
22
|
+
items: [
|
|
23
|
+
{
|
|
24
|
+
title: "Вход",
|
|
25
|
+
url: "/login",
|
|
26
|
+
priority: 10,
|
|
27
|
+
showOnTouch: true,
|
|
28
|
+
type: "button",
|
|
29
|
+
place: "start",
|
|
30
|
+
} , {
|
|
31
|
+
id: 'register',
|
|
32
|
+
title: 'Регистрация',
|
|
33
|
+
url: '/register',
|
|
34
|
+
type: 'button',
|
|
35
|
+
priority: 11,
|
|
36
|
+
showOnTouch:true,
|
|
37
|
+
place: 'start'
|
|
38
|
+
},
|
|
39
|
+
],
|
|
29
40
|
},
|
|
30
41
|
},
|
|
31
|
-
initController: ncInit,
|
|
32
42
|
};
|
|
33
43
|
|
|
44
|
+
|
|
34
45
|
export { ncInit, manifest };
|
|
@@ -1,45 +1,34 @@
|
|
|
1
1
|
import ncInit from "../../common/ncInit";
|
|
2
2
|
|
|
3
3
|
let manifest = {
|
|
4
|
-
environment: "
|
|
4
|
+
environment: "root",
|
|
5
5
|
router: {
|
|
6
|
+
root: "/dashboard",
|
|
6
7
|
manifest: [],
|
|
7
8
|
},
|
|
8
9
|
crud: {
|
|
9
10
|
containerSelector: ".main-container",
|
|
10
11
|
},
|
|
11
12
|
modules: {
|
|
12
|
-
user: {
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
user: {},
|
|
14
|
+
},
|
|
15
|
+
brand: {
|
|
16
|
+
icon: {
|
|
17
|
+
src: "/img/icons/icon-w-64.png",
|
|
18
|
+
width: 48,
|
|
19
|
+
height: 28,
|
|
15
20
|
},
|
|
21
|
+
url: "/",
|
|
16
22
|
},
|
|
17
|
-
initController: ncInit,
|
|
18
23
|
menu: {
|
|
24
|
+
side: {
|
|
25
|
+
sections: [],
|
|
26
|
+
},
|
|
19
27
|
top: {
|
|
20
|
-
toggleSelector: ".navbar-burger",
|
|
21
28
|
sections: [],
|
|
22
|
-
items: [
|
|
23
|
-
{
|
|
24
|
-
title: "Вход",
|
|
25
|
-
url: "/login",
|
|
26
|
-
priority: 10,
|
|
27
|
-
showOnTouch: true,
|
|
28
|
-
type: "button",
|
|
29
|
-
place: "start",
|
|
30
|
-
} , {
|
|
31
|
-
id: 'register',
|
|
32
|
-
title: 'Регистрация',
|
|
33
|
-
url: '/register',
|
|
34
|
-
type: 'button',
|
|
35
|
-
priority: 11,
|
|
36
|
-
showOnTouch:true,
|
|
37
|
-
place: 'start'
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
29
|
},
|
|
41
30
|
},
|
|
31
|
+
initController: ncInit,
|
|
42
32
|
};
|
|
43
33
|
|
|
44
|
-
|
|
45
34
|
export { ncInit, manifest };
|
|
@@ -1,45 +1,34 @@
|
|
|
1
1
|
import ncInit from "../../common/ncInit";
|
|
2
2
|
|
|
3
3
|
let manifest = {
|
|
4
|
-
environment: "
|
|
4
|
+
environment: "user",
|
|
5
5
|
router: {
|
|
6
|
+
root: "/dashboard",
|
|
6
7
|
manifest: [],
|
|
7
8
|
},
|
|
8
9
|
crud: {
|
|
9
10
|
containerSelector: ".main-container",
|
|
10
11
|
},
|
|
11
12
|
modules: {
|
|
12
|
-
user: {
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
user: {},
|
|
14
|
+
},
|
|
15
|
+
brand: {
|
|
16
|
+
icon: {
|
|
17
|
+
src: "/img/icons/icon-w-64.png",
|
|
18
|
+
width: 48,
|
|
19
|
+
height: 28,
|
|
15
20
|
},
|
|
21
|
+
url: "/",
|
|
16
22
|
},
|
|
17
|
-
initController: ncInit,
|
|
18
23
|
menu: {
|
|
24
|
+
side: {
|
|
25
|
+
sections: [],
|
|
26
|
+
},
|
|
19
27
|
top: {
|
|
20
|
-
toggleSelector: ".navbar-burger",
|
|
21
28
|
sections: [],
|
|
22
|
-
items: [
|
|
23
|
-
{
|
|
24
|
-
title: "Вход",
|
|
25
|
-
url: "/login",
|
|
26
|
-
priority: 10,
|
|
27
|
-
showOnTouch: true,
|
|
28
|
-
type: "button",
|
|
29
|
-
place: "start",
|
|
30
|
-
} , {
|
|
31
|
-
id: 'register',
|
|
32
|
-
title: 'Регистрация',
|
|
33
|
-
url: '/register',
|
|
34
|
-
type: 'button',
|
|
35
|
-
priority: 11,
|
|
36
|
-
showOnTouch:true,
|
|
37
|
-
place: 'start'
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
29
|
},
|
|
41
30
|
},
|
|
31
|
+
initController: ncInit,
|
|
42
32
|
};
|
|
43
33
|
|
|
44
|
-
|
|
45
34
|
export { ncInit, manifest };
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
const notNode = require("not-node");
|
|
2
2
|
|
|
3
|
+
const InitIdentityTokens = require("not-user").InitIdentityTokens;
|
|
4
|
+
|
|
3
5
|
const Init = require("not-node").Init,
|
|
4
6
|
path = require("path"),
|
|
5
7
|
manifest = require("./../../project.manifest.json");
|
|
@@ -15,6 +17,7 @@ module.exports = () => {
|
|
|
15
17
|
const additional = {
|
|
16
18
|
pre({ initSequence }) {
|
|
17
19
|
initSequence.remove("InitMonitoring");
|
|
20
|
+
initSequence.insert(InitIdentityTokens);
|
|
18
21
|
},
|
|
19
22
|
};
|
|
20
23
|
|