diff --git a/projects/cli/CHANGELOG.md b/projects/cli/CHANGELOG.md new file mode 100644 index 0000000..f761745 --- /dev/null +++ b/projects/cli/CHANGELOG.md @@ -0,0 +1,28 @@ +# Changelog + + +### 0.0.1-alpha.1 (2024-06-26) + + +### Features + +* add BSD 2-Clause License and author information ([#52](https://github.com/Kordrad/ng-zen/issues/52)) ([9336578](https://github.com/Kordrad/ng-zen/commit/93365782656f8166f6f8205dc9c4ea9f4c8c0c27)) +* add docs script ([#39](https://github.com/Kordrad/ng-zen/issues/39)) ([d5e1e37](https://github.com/Kordrad/ng-zen/commit/d5e1e37eed26ebf2227c9039ad9b97161f7316c3)) +* **avatar:** add component ([#32](https://github.com/Kordrad/ng-zen/issues/32)) ([35d89ab](https://github.com/Kordrad/ng-zen/commit/35d89abeb5baf934ec68b83ca8ef5f28ff40332c)) +* **badge:** add new component ([#10](https://github.com/Kordrad/ng-zen/issues/10)) ([06b7e3a](https://github.com/Kordrad/ng-zen/commit/06b7e3acf4d947ee8ee79bde772d987d813bbf62)) +* **badge:** add top/right/bottom/left positions to component ([#20](https://github.com/Kordrad/ng-zen/issues/20)) ([4cb3b6e](https://github.com/Kordrad/ng-zen/commit/4cb3b6e5db1f9e239ccee01c86a7b00102cfb70e)) +* **button:** add component ([#59](https://github.com/Kordrad/ng-zen/issues/59)) ([b72a67a](https://github.com/Kordrad/ng-zen/commit/b72a67aa39ba3dd9a893395d178935573cfc9038)) +* **kit:** add new library ([#7](https://github.com/Kordrad/ng-zen/issues/7)) ([1576da6](https://github.com/Kordrad/ng-zen/commit/1576da623fece9910e289d53abe0928d8c15664b)) +* **pin:** add component ([#33](https://github.com/Kordrad/ng-zen/issues/33)) ([2f8c021](https://github.com/Kordrad/ng-zen/commit/2f8c0214a47defb0f748e399b83872ef9e8cc2a0)) +* **pin:** add stream animation ([#34](https://github.com/Kordrad/ng-zen/issues/34)) ([1fc4968](https://github.com/Kordrad/ng-zen/commit/1fc4968e31ce05fe36cfb1b89d9248df68684a2f)) +* **pull-request-check:** cache module installation to improve performance ([#53](https://github.com/Kordrad/ng-zen/issues/53)) ([c82c279](https://github.com/Kordrad/ng-zen/commit/c82c2792c8b0b436e5856a63a53c5b2ffd433a76)) +* **schematics:** add new project ([#45](https://github.com/Kordrad/ng-zen/issues/45)) ([1325318](https://github.com/Kordrad/ng-zen/commit/1325318a8c4941f3ff696138d7ae427aa95279f1)) +* **storybook:** add storybook instead of demo app ([#26](https://github.com/Kordrad/ng-zen/issues/26)) ([edac7b1](https://github.com/Kordrad/ng-zen/commit/edac7b16cb2573c86b52a614b2539e9fb6b9fafe)) +* **switch:** add component ([#56](https://github.com/Kordrad/ng-zen/issues/56)) ([a6028d5](https://github.com/Kordrad/ng-zen/commit/a6028d5d3bc00fd5f13bf51192225e2eda68e0fc)) +* **tag:** add component ([#35](https://github.com/Kordrad/ng-zen/issues/35)) ([33dc67c](https://github.com/Kordrad/ng-zen/commit/33dc67c5830ed42323e76c8658ea1d85c0509155)) + + +### Bug Fixes + +* **eslint:** remove quiet flag ([#21](https://github.com/Kordrad/ng-zen/issues/21)) ([06fbc75](https://github.com/Kordrad/ng-zen/commit/06fbc752b50470fec745bcd77d4b64ba2bec82ee)) +* restore project name to ng-zen ([#19](https://github.com/Kordrad/ng-zen/issues/19)) ([0c659d7](https://github.com/Kordrad/ng-zen/commit/0c659d77bbda95414fd29ab2dbc58b4ffd3d61d7)) diff --git a/projects/cli/package.json b/projects/cli/package.json index 3ad1fab..302fc41 100644 --- a/projects/cli/package.json +++ b/projects/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ng-zen/cli", - "version": "0.0.1", + "version": "0.0.1-alpha.1", "license": "BSD-2-Clause", "repository": { "url": "https://github.com/Kordrad/ng-zen", @@ -17,7 +17,7 @@ "scripts": { "build": "tsc -p tsconfig.schematics.json", "postbuild": "npm run copy-files && npm run clean-packagejson", - "copy-files": "copyfiles schematics/*/schema.json schematics/*/files/** schematics/*/templates/** schematics/collection.json **/README.md LICENSE package.json ../../dist/@ng-zen/cli/", + "copy-files": "copyfiles schematics/*/schema.json schematics/*/files/** schematics/*/templates/** schematics/collection.json **/README.md **/CHANGELOG.md LICENSE package.json ../../dist/@ng-zen/cli/", "clean-packagejson": "cd ../../dist/@ng-zen/cli && npm pkg delete scripts" }, "schematics": "./schematics/collection.json",