breeze-bindgen 1.1.1 → 1.1.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/cli.mjs CHANGED
@@ -214,11 +214,11 @@ function processAstAndGenerateCode(astArr, originalCppFilePath, nameFilter, addi
214
214
  const parsed = parser2.parse(type, (name) => resolveUnderPath(path, name));
215
215
  return parser2.formatToC(parsed);
216
216
  };
217
- let binding = `// This file is generated by bindgen
217
+ let binding = `// This file is generated by Breeze.JS Bindgen (https://github.com/breeze-shell/breeze-js-bindgen)
218
218
  // Do not modify this file manually!
219
219
 
220
220
  #pragma once
221
- #include "binding_types.h" // Assuming this will be in the same output directory
221
+ #include "binding_types.h"
222
222
  #include "quickjs.h"
223
223
  #include "quickjspp.hpp"
224
224
 
package/dist/core.cjs CHANGED
@@ -425,11 +425,11 @@ function processAstAndGenerateCode(astArr, originalCppFilePath, nameFilter, addi
425
425
  const parsed = parser.parse(type, (name) => resolveUnderPath(path, name));
426
426
  return parser.formatToC(parsed);
427
427
  };
428
- let binding = `// This file is generated by bindgen
428
+ let binding = `// This file is generated by Breeze.JS Bindgen (https://github.com/breeze-shell/breeze-js-bindgen)
429
429
  // Do not modify this file manually!
430
430
 
431
431
  #pragma once
432
- #include "binding_types.h" // Assuming this will be in the same output directory
432
+ #include "binding_types.h"
433
433
  #include "quickjs.h"
434
434
  #include "quickjspp.hpp"
435
435
 
package/dist/core.mjs CHANGED
@@ -420,11 +420,11 @@ function processAstAndGenerateCode(astArr, originalCppFilePath, nameFilter, addi
420
420
  const parsed = parser.parse(type, (name) => resolveUnderPath(path, name));
421
421
  return parser.formatToC(parsed);
422
422
  };
423
- let binding = `// This file is generated by bindgen
423
+ let binding = `// This file is generated by Breeze.JS Bindgen (https://github.com/breeze-shell/breeze-js-bindgen)
424
424
  // Do not modify this file manually!
425
425
 
426
426
  #pragma once
427
- #include "binding_types.h" // Assuming this will be in the same output directory
427
+ #include "binding_types.h"
428
428
  #include "quickjs.h"
429
429
  #include "quickjspp.hpp"
430
430
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
3
3
  "name": "breeze-bindgen",
4
- "version": "1.1.1",
4
+ "version": "1.1.2",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",