plusui-native-builder 0.1.58 → 0.1.60

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plusui-native-builder",
3
- "version": "0.1.58",
3
+ "version": "0.1.60",
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.58"
28
+ "plusui-native-connect": "^0.1.60"
29
29
  }
30
30
  }
package/src/index.js CHANGED
@@ -106,9 +106,9 @@ function generateBindings() {
106
106
  }
107
107
 
108
108
  const projectRoot = '.';
109
- const outputDir = './src/Bindings';
109
+ // Output goes to Connections/ at project root
110
+ const outputDir = './Connections';
110
111
  runCommand(`node ${bindgenPath} ${projectRoot} ${outputDir}`);
111
- syncGeneratedTsBindings('./src/Bindings', './frontend/src/Bindings');
112
112
  log('Connection bindings generated ✓', 'green');
113
113
  }
114
114