plusui-native-builder 0.1.84 → 0.1.85
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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Auto-generated by plusui connect
|
|
3
|
+
* DO NOT EDIT -- regenerated on every `plusui connect` run
|
|
4
|
+
*
|
|
5
|
+
* Usage — call initChannels(connect) once, then use directly:
|
|
6
|
+
*
|
|
7
|
+
* initChannels(connect);
|
|
8
|
+
* myEvent.on([](const json& p) { ... });
|
|
9
|
+
* myEvent.emit({{"data", 123}});
|
|
10
|
+
*/
|
|
11
|
+
#pragma once
|
|
12
|
+
#include <plusui/plusui.hpp>
|
|
13
|
+
|
|
14
|
+
// No channels detected yet.
|
|
15
|
+
// Add name.on() / name.emit() calls in your project,
|
|
16
|
+
// then re-run `plusui connect`.
|
|
17
|
+
|
|
18
|
+
inline void initChannels(plusui::Connect&) {}
|
|
19
|
+
|
|
20
|
+
// Project root: C:/Users/Dannan/Documents/GitHub/Da3n0n/PlusUI/Tools/plusui-builder
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Auto-generated by plusui connect
|
|
3
|
+
* DO NOT EDIT -- regenerated on every `plusui connect` run
|
|
4
|
+
*
|
|
5
|
+
* Import the channels you use:
|
|
6
|
+
* import { notify, search } from './Connections/connections.gen';
|
|
7
|
+
* notify.on((data) => { ... });
|
|
8
|
+
* notify.emit({ text: 'hello' });
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
// No channels detected yet.
|
|
12
|
+
// Add name.on() / name.emit() calls anywhere in your project,
|
|
13
|
+
// then re-run `plusui connect`.
|
|
14
|
+
|
|
15
|
+
export const CONNECT_CHANNELS = [
|
|
16
|
+
] as const;
|
|
17
|
+
export type ConnectChannel = (typeof CONNECT_CHANNELS)[number];
|
|
18
|
+
export const CONNECT_PROJECT_ROOT = "C:/Users/Dannan/Documents/GitHub/Da3n0n/PlusUI/Tools/plusui-builder";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plusui-native-builder",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.85",
|
|
4
4
|
"description": "Multi-platform build tool for PlusUI",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"plusui-native-connect": "^0.1.
|
|
28
|
+
"plusui-native-connect": "^0.1.85"
|
|
29
29
|
}
|
|
30
30
|
}
|