diff --git a/CHANGELOG.md b/CHANGELOG.md index e5b9b6a..d9b97e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. This plugin was completely rewritten since V2.x to use esbuild for bundling cloud functions. For documentation of the legacy v1.x plugin version see [here](https://github.com/simondotm/nx-firebase/tree/release/v1.1.0). - [@simondotm/nx-firebase Changelog](#simondotmnx-firebase-changelog) + - [v2.1.2](#v212) - [v2.1.1](#v211) - [v2.1.0](#v210) - [v2.0.0](#v200) @@ -23,6 +24,11 @@ This plugin was completely rewritten since V2.x to use esbuild for bundling clou - [v0.2.3](#v023) - [v0.2.2 - Initial Release](#v022---initial-release) +## v2.1.2 + +* Include `@nx/devkit` as a peer dependency for the package +* Listing in the [Nx plugin registry](https://nx.dev/plugin-registry) + ## v2.1.1 * Fix issues in the v2.1.0 release diff --git a/packages/nx-firebase/package.json b/packages/nx-firebase/package.json index e69ebba..8a19844 100644 --- a/packages/nx-firebase/package.json +++ b/packages/nx-firebase/package.json @@ -1,6 +1,6 @@ { "name": "@simondotm/nx-firebase", - "version": "2.1.1", + "version": "2.1.2", "description": "A Firebase plugin for Nx monorepo workspaces.", "author": "Simon Morris", "license": "MIT", @@ -21,10 +21,11 @@ "generators": "./generators.json", "executors": "./executors.json", "peerDependencies": { + "@nx/devkit": ">= 16.1.1", "@nx/workspace": ">= 16.1.1", "nx": ">= 16.1.1" }, "dependencies": { - "@nx/node": "^16.1.1" + "@nx/node": "^16.6.0" } }