Open rouilj opened 1 year ago
Since I got the dev environment running I get an error when trying to define a class property. Neither:
class ... {
version = "0.2.7"
static myversion = "0.2.7"
}
seem to work. It throws a syntax error on the =
sign.
So maybe:
class ... {
version() { return "0.2.7"};
}
method is the way to go here if you think it's worthwhile.
Would it be possible to add a version property to CommandPal? Would something like:
make:
work?
Also in the docs, the handler definition is shown as:
What is
e
? From my testing it looks like it is undefined.I assume there is some mechanism driven off of package.json to keep the version identifier up to date?