From e3eaf49e6430696d97766e886012587e33a100c7 Mon Sep 17 00:00:00 2001 From: Ajit Date: Sun, 1 Dec 2024 02:10:48 +0530 Subject: [PATCH] ci: bump v0.4.0, allow Angular v19 --- libs/ng-auto-animate/package.json | 6 +++--- package.json | 6 +++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/libs/ng-auto-animate/package.json b/libs/ng-auto-animate/package.json index 3026637..650d456 100644 --- a/libs/ng-auto-animate/package.json +++ b/libs/ng-auto-animate/package.json @@ -1,14 +1,14 @@ { "name": "ng-auto-animate", - "version": "0.3.2", + "version": "0.4.0", "description": "Add motion to your apps with a single line of code. An Angular Directive to use FormKit's auto-animate library.", "repository": "https://github.com/ajitzero/ng-auto-animate.git", "homepage": "https://github.com/ajitzero/ng-auto-animate/tree/main/libs/ng-auto-animate#readme", "author": "Ajit Panigrahi ", "license": "MIT", "peerDependencies": { - "@angular/common": "^18.0.0", - "@angular/core": "^18.0.0", + "@angular/common": "^18.0.0 || ^19.0.0", + "@angular/core": "^18.0.0 || ^19.0.0", "@formkit/auto-animate": "^0.8.2" }, "dependencies": { diff --git a/package.json b/package.json index 76c8ddd..a827926 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,12 @@ { "name": "ng-auto-animate", - "version": "0.3.2", + "version": "0.4.0", "license": "MIT", "scripts": { + "start": "nx serve demo", + "build": "nx run ng-auto-animate:build:production", + "publish": "pnpm publish dist/libs/ng-auto-animate", + "prepublish": "pnpm run format && pnpm run build", "clean": "rimraf dist ./node_modules ./.angular", "format": "prettier -w --cache **.{ts,js,json,html,scss,css}" },