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);
}
}
I also started the dispute for @nrg scope in NPM, but Github takes ages for answering it.