2.0.0 (2024-10-06)
- feat!: renaming @allanoricil/node-red-node to @allanoricil/nrg-nodes (770e739)
Features
- deps: bump @allanoricil/nrg-generator from 1.1.0 to 1.2.0 releasing the redesigned logo (49c41bb)
BREAKING CHANGES
- all
@allanoricil/node-red-node
imports must be renamed to @allanoricil/nrg-nodes
BEFORE
import { Node } from "@allanoricil/node-red-node";
export default class MyNode extends Node {
constructor(config) {
super(config);
}
}
AFTER
import { Node } from "@allanoricil/nrg-nodes";
export default class MyNode extends Node {
constructor(config) {
super(config);
}
}