diff --git a/CHANGELOG.md b/CHANGELOG.md index f0e6326..8a314ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,18 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2024-05-31 + +### Added + +- added application generator. +- added frontend library generator. +- added basic docker-compose yaml with postgres and redis. +- added storybook to frontend apps and libs. +- added `targetDefaults` to nx.json + +### Changed + +- reworked preset workspace structure + +### Updated + +- bumps deps(and Nx 19.1.1). + ## [0.1.1] - 2024-05-18 ## Fixed -- fixes first publish +- fixes first publish. ## [0.1.0] - 2024-05-18 ### Added -- Inital release +- Inital release. -[unreleased] https://github.com/hexancore/nx/compare/0.1.1...HEAD -[0.1.1] https://github.com/hexancore/nx/compare/0.1.0...0.1.1 -[0.1.0] https://github.com/hexancore/nx/releases/tag/0.1.0 +[unreleased] https://github.com/hexancore/nx/compare/0.2.0...HEAD +[0.2.0] https://github.com/hexancore/nx/compare/0.1.1...0.2.0 +[0.1.1] https://github.com/hexancore/nx/compare/0.1.0...0.1.1 +[0.1.0] https://github.com/hexancore/nx/releases/tag/0.1.0 \ No newline at end of file diff --git a/package.json b/package.json index cdbd371..f1a2d91 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,11 @@ "ci": "nx run-many --targets=lint,test,build,e2e --configuration=ci", "precommit": "nx run-many --targets=lint,test,build" }, + "repository": { + "type": "git", + "url": "https://github.com/hexancore/nx.git", + "directory": "packages/plugin" + }, "private": true, "packageManager": "pnpm@8.15.8", "dependencies": { diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 8d3edd1..ce7fd69 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@hexancore/nx", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "engines": { "node": ">=22" diff --git a/packages/plugin/test/generators/preset/__snapshots__/generator.test.ts.snap b/packages/plugin/test/generators/preset/__snapshots__/generator.test.ts.snap index 2870832..d206530 100644 --- a/packages/plugin/test/generators/preset/__snapshots__/generator.test.ts.snap +++ b/packages/plugin/test/generators/preset/__snapshots__/generator.test.ts.snap @@ -873,7 +873,7 @@ exports[`preset generator package.json should match snapshot 1`] = ` "@babel/plugin-transform-modules-commonjs": "^7.24.1", "@babel/preset-env": "^7.24.4", "@hexancore/mocker": "^1.1.2", - "@hexancore/nx": "0.1.1", + "@hexancore/nx": "0.2.0", "@intlify/eslint-plugin-vue-i18n": "^2.0.0", "@intlify/unplugin-vue-i18n": "^4.0.0", "@jest/globals": "^29.7.0",