From bbb8fefaad90d689fd1c4454e305482ed7a409e7 Mon Sep 17 00:00:00 2001 From: relliv Date: Tue, 12 Nov 2024 01:49:28 +0300 Subject: [PATCH] Setup angular library configs --- .../nx-angular-calendar-heatmap/CHANGELOG.md | 7 ++++++ .../ng-package.json | 6 ++++- .../nx-angular-calendar-heatmap/package.json | 24 ++++++++++++++++--- .../nx-react-calendar-heatmap/package.json | 2 +- package.json | 1 + 5 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 libs/features/nx-angular-calendar-heatmap/CHANGELOG.md diff --git a/libs/features/nx-angular-calendar-heatmap/CHANGELOG.md b/libs/features/nx-angular-calendar-heatmap/CHANGELOG.md new file mode 100644 index 0000000..61e86dc --- /dev/null +++ b/libs/features/nx-angular-calendar-heatmap/CHANGELOG.md @@ -0,0 +1,7 @@ +# Changelog + +## [1.0.0] - 2024-11-12 + +### Added + +- Added calendar heatmap components. diff --git a/libs/features/nx-angular-calendar-heatmap/ng-package.json b/libs/features/nx-angular-calendar-heatmap/ng-package.json index e193d89..f93715c 100644 --- a/libs/features/nx-angular-calendar-heatmap/ng-package.json +++ b/libs/features/nx-angular-calendar-heatmap/ng-package.json @@ -3,5 +3,9 @@ "dest": "../../../dist/libs/features/nx-angular-calendar-heatmap", "lib": { "entryFile": "src/index.ts" - } + }, + "assets": [ + "CHANGELOG.md", + "LICENSE.md" + ] } diff --git a/libs/features/nx-angular-calendar-heatmap/package.json b/libs/features/nx-angular-calendar-heatmap/package.json index c819393..6b19f8f 100644 --- a/libs/features/nx-angular-calendar-heatmap/package.json +++ b/libs/features/nx-angular-calendar-heatmap/package.json @@ -1,9 +1,27 @@ { "name": "@ngeenx/nx-angular-calendar-heatmap", - "version": "0.0.1", + "version": "1.0.0", + "description": "Angular Calendar Heatmap component", + "keywords": [ + "angular", + "calendar", + "heatmap", + "calendar-heatmap", + "heatmap-calendar" + ], + "author": "relliv ", + "bugs": { + "url": "https://github.com/ngeenx/nx-calendar-heatmap/issues" + }, + "license": "MIT", + "homepage": "https://github.com/ngeenx/nx-calendar-heatmap#readme", + "repository": { + "type": "git", + "url": "git@github.com:ngeenx/nx-calendar-heatmap.git" + }, "peerDependencies": { - "@angular/common": "^18.2.0", - "@angular/core": "^18.2.0" + "@angular/common": "^16.0.0 || ^17.0.0 || ^18.0.0", + "@angular/core": "^16.0.0 || ^17.0.0 || ^18.0.0" }, "sideEffects": false } diff --git a/libs/features/nx-react-calendar-heatmap/package.json b/libs/features/nx-react-calendar-heatmap/package.json index 8d89aaf..9328565 100644 --- a/libs/features/nx-react-calendar-heatmap/package.json +++ b/libs/features/nx-react-calendar-heatmap/package.json @@ -28,7 +28,7 @@ }, "main": "./index.js", "types": "./index.d.ts", - "files": [ + "files": [ "CHANGELOG.md", "LICENSE.md", "./lib", diff --git a/package.json b/package.json index 4c732eb..0e962f6 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "react:start": "nx serve react-app", "vue:build": "nx build nx-vue-calendar-heatmap --skip-nx-cache", "react:build": "nx build nx-react-calendar-heatmap --skip-nx-cache", + "angular:build": "nx build nx-angular-calendar-heatmap --skip-nx-cache", "utils:test": "nx test nx-calendar-heatmap-utils", "utils:build": "nx build nx-calendar-heatmap-utils --skip-nx-cache && nx run nx-calendar-heatmap-utils:tailwind-build", "lint:all": "nx run-many --all --target=lint",