Skip to content

v2.0.0

Compare
Choose a tag to compare
@AllanOricil AllanOricil released this 06 Oct 03:08
· 95 commits to main since this release

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);
  }
}