keen-project-create 1.0.16 → 1.0.18

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "keen-project-create",
3
3
  "description": "Project scaffolder for Keen projects",
4
- "version": "1.0.16",
4
+ "version": "1.0.18",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "bin": {
@@ -1,5 +1,5 @@
1
- export function debux(debux_id) {
2
- return debux_id;
1
+ // Debugging entry point - breakpoint condition checks global.dictionary.debux_id
2
+ export function exec() {
3
+ // This line exists to provide a valid breakpoint target
4
+ const nodeId = global.dictionary?.debux_id;
3
5
  }
4
-
5
- global.debux = debux;
@@ -1 +1,5 @@
1
- export function exec() {}
1
+ // Debugging entry point - breakpoint condition checks global.dictionary.debux_id
2
+ export function exec() {
3
+ // This line exists to provide a valid breakpoint target
4
+ const nodeId = global.dictionary?.debux_id;
5
+ }