From 1d0a4285ad1f7f56d420abcf694d2833d8a89e5a Mon Sep 17 00:00:00 2001 From: agarciar Date: Mon, 25 May 2026 18:29:53 +0200 Subject: [PATCH] fix: ship .env.local.example in the published package The README tells users to copy .env.local.example out of the installed package, but it was missing from the `files` allowlist so the tarball never contained it and the documented `cp` failed. Add it to `files`; bump to 0.1.1. Co-Authored-By: Claude Opus 4.7 (1M context) --- CHANGELOG.md | 11 ++++++++++- package.json | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec5e2fb..a8c439e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1] — 2026-05-25 + +### Fixed + +- Ship `.env.local.example` in the published package. The README's + `cp node_modules/angular-deploy-bunny/.env.local.example .env.local` + instruction referenced a file that wasn't included in the tarball. + ## [0.1.0] — 2026-05-22 ### Added @@ -23,5 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `dryRun` mode and a `purgeAfterUpload` toggle. - Credentials read from environment variables or a `.env.local` file. -[Unreleased]: https://github.com/lostium/angular-deploy-bunny/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/lostium/angular-deploy-bunny/compare/v0.1.1...HEAD +[0.1.1]: https://github.com/lostium/angular-deploy-bunny/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/lostium/angular-deploy-bunny/releases/tag/v0.1.0 diff --git a/package.json b/package.json index ef6e598..468bd7e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-deploy-bunny", - "version": "0.1.0", + "version": "0.1.1", "description": "Angular Architect builder (ng deploy) that syncs your build output to a Bunny.net CDN Storage Zone with SHA256-based incremental diffing, then purges the Pull Zone.", "keywords": [ "angular", @@ -21,6 +21,7 @@ "dist", "builders.json", "src/schema.json", + ".env.local.example", "README.md", "LICENSE", "CHANGELOG.md"