diff --git a/.github/actions/cypress-cache/action.yaml b/.github/actions/cypress-cache/action.yaml new file mode 100644 index 0000000..f191b78 --- /dev/null +++ b/.github/actions/cypress-cache/action.yaml @@ -0,0 +1,11 @@ +name: Cypress runner cache +description: Retrieve and cache the cypress runner +runs: + using: "composite" + steps: + # cache cypress runner + - uses: actions/cache@v3 + id: cypress-cache + with: + path: /home/runner/.cache/Cypress + key: cypress-runner-cache-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/actions/lint/action.yaml b/.github/actions/lint/action.yaml new file mode 100644 index 0000000..12f9be3 --- /dev/null +++ b/.github/actions/lint/action.yaml @@ -0,0 +1,14 @@ +name: Lint project +description: verify linting rules +runs: + using: "composite" + steps: + - uses: nrwl/nx-set-shas@v3 + - uses: './.github/actions/node-cache' + - name: Install deps + shell: bash + run: npm i + - name: Lint affected + shell: bash + run: npx nx affected -t lint + diff --git a/.github/actions/node-cache/action.yaml b/.github/actions/node-cache/action.yaml new file mode 100644 index 0000000..e312397 --- /dev/null +++ b/.github/actions/node-cache/action.yaml @@ -0,0 +1,12 @@ +name: Node modules cache +description: Retrieve and cache project node_modules +runs: + using: "composite" + steps: + # cache node modules for all jobs to use + - uses: actions/cache@v3 + id: node_modules-cache + with: + path: | + **/node_modules + key: install-cache-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/actions/release/action.yaml b/.github/actions/release/action.yaml new file mode 100644 index 0000000..d0c7023 --- /dev/null +++ b/.github/actions/release/action.yaml @@ -0,0 +1,48 @@ +name: Release job +description: build affected packages and publish them to npm +inputs: + npm_token: + description: 'NPM token' + required: true + gh_token: + description: 'Github token' + required: true + gh_actor: + description: 'Github actor' + required: true +runs: + using: "composite" + steps: + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '18' + - uses: './.github/actions/node-cache' + - name: Install deps + shell: bash + run: npm i + - name: git config + shell: bash + run: | + git config user.name "${{ inputs.gh_actor }}" + git config user.email "${{ inputs.gh_actor }}@users.noreply.github.com" + - name: Build + shell: bash + run: npx nx run-many -t build + - name: Set publish config + env: + NPM_TOKEN: ${{ inputs.npm_token }} + shell: bash + run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" + - name: Version + shell: bash + env: + GH_TOKEN: ${{ inputs.gh_token }} + GITHUB_TOKEN: ${{ inputs.gh_token }} + run: npx nx affected --base=last-release --parallel=1 --target=version --postTargets=syncDependencies,npm,github --trackDeps + - name: Tag last-release + shell: bash + run: | + git tag -f last-release + git push origin last-release --force + diff --git a/.github/actions/test-e2e/action.yaml b/.github/actions/test-e2e/action.yaml new file mode 100644 index 0000000..b636d45 --- /dev/null +++ b/.github/actions/test-e2e/action.yaml @@ -0,0 +1,16 @@ +name: E2E tests +description: verify e2e tests +runs: + using: "composite" + steps: + - uses: nrwl/nx-set-shas@v3 + - uses: './.github/actions/node-cache' + - uses: './.github/actions/cypress-cache' + - uses: './.github/actions/webpack-cache' + - name: Install deps + shell: bash + run: npm i + - name: Run e2e tests + shell: bash + run: npx nx run test-app-e2e:e2e --ci + diff --git a/.github/actions/test-unit/action.yaml b/.github/actions/test-unit/action.yaml new file mode 100644 index 0000000..f410882 --- /dev/null +++ b/.github/actions/test-unit/action.yaml @@ -0,0 +1,14 @@ +name: Unit tests +description: verify unit tests +runs: + using: "composite" + steps: + - uses: nrwl/nx-set-shas@v3 + - uses: './.github/actions/node-cache' + - name: Install deps + shell: bash + run: npm i + - name: Test affected + shell: bash + run: npx nx affected -t test --configuration=ci + diff --git a/.github/actions/webpack-cache/action.yaml b/.github/actions/webpack-cache/action.yaml new file mode 100644 index 0000000..a42ef45 --- /dev/null +++ b/.github/actions/webpack-cache/action.yaml @@ -0,0 +1,12 @@ +name: Webpack dev server cache +description: Cache for e2e test runs +runs: + using: "composite" + steps: + # cache node modules for all jobs to use + - uses: actions/cache@v3 + id: webpack-cache + with: + path: | + **/.webpack-cache + key: webpack-cache-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a0579be --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,72 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + install: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: nrwl/nx-set-shas@v3 + # cache node modules for all jobs to use + - uses: './.github/actions/node-cache' + # cache cypress runner + - uses: './.github/actions/cypress-cache' + - name: Install deps + run: npm ci + lint: + needs: [install] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: './.github/actions/lint' + test: + runs-on: ubuntu-latest + needs: [install] + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: './.github/actions/test-unit' + build: + runs-on: ubuntu-latest + needs: [install] + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: nrwl/nx-set-shas@v3 + - uses: './.github/actions/node-cache' + - name: Install deps + run: npm i + - name: Build affected + run: npx nx affected -t build + test-e2e: + runs-on: ubuntu-latest + needs: [install, build] + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: './.github/actions/test-e2e' + release: + runs-on: ubuntu-latest + needs: [install, lint, test, build, test-e2e] + if: github.event_name != 'pull_request' + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: './.github/actions/release' + with: + gh_token: ${{ secrets.GITHUB_TOKEN }} + npm_token: ${{ secrets.NPM_TOKEN }} + gh_actor: ${GITHUB_ACTOR} diff --git a/examples/test-app-e2e/CHANGELOG.md b/examples/test-app-e2e/CHANGELOG.md index c34fa73..4dc68c6 100644 --- a/examples/test-app-e2e/CHANGELOG.md +++ b/examples/test-app-e2e/CHANGELOG.md @@ -1,13 +1,2 @@ # Changelog -This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). - -## [1.0.6](https://github.com/Hyperkid123/nxtesting/compare/v1.0.5...v1.0.6) (2023-11-28) - -## [1.0.5](https://github.com/Hyperkid123/nxtesting/compare/v1.0.4...v1.0.5) (2023-11-28) - -## [1.0.4](https://github.com/Hyperkid123/nxtesting/compare/v1.0.3...v1.0.4) (2023-11-28) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) diff --git a/examples/test-app/CHANGELOG.md b/examples/test-app/CHANGELOG.md index c34fa73..4dc68c6 100644 --- a/examples/test-app/CHANGELOG.md +++ b/examples/test-app/CHANGELOG.md @@ -1,13 +1,2 @@ # Changelog -This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). - -## [1.0.6](https://github.com/Hyperkid123/nxtesting/compare/v1.0.5...v1.0.6) (2023-11-28) - -## [1.0.5](https://github.com/Hyperkid123/nxtesting/compare/v1.0.4...v1.0.5) (2023-11-28) - -## [1.0.4](https://github.com/Hyperkid123/nxtesting/compare/v1.0.3...v1.0.4) (2023-11-28) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 6f855b6..825c32f 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,142 +1 @@ # Changelog - -This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). - -## [1.0.16](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.15...@mmnxtest/core-1.0.16) (2023-11-30) - - -### Bug Fixes - -* **core:** update ([88c43a4](https://github.com/Hyperkid123/nxtesting/commit/88c43a4b97ab1608a5dc43a31d83ff53aec7e322)) - -## [1.0.15](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.14...@mmnxtest/core-1.0.15) (2023-11-30) - -## [1.0.14](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.13...@mmnxtest/core-1.0.14) (2023-11-30) - - -### Bug Fixes - -* **core:** should trigger all ([2b888ec](https://github.com/Hyperkid123/nxtesting/commit/2b888ec0238770ef14c364b852c9757be0597b98)) - -## [1.0.13](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.12...@mmnxtest/core-1.0.13) (2023-11-30) - - -### Bug Fixes - -* **core:** should trigger all ([ca277e7](https://github.com/Hyperkid123/nxtesting/commit/ca277e74bd7996d0fa6e80dfcc2b784ee8576e22)) - -## [1.0.12](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.11...@mmnxtest/core-1.0.12) (2023-11-30) - -## [1.0.11](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.10...@mmnxtest/core-1.0.11) (2023-11-30) - -## [1.0.10](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.9...@mmnxtest/core-1.0.10) (2023-11-30) - - -### Bug Fixes - -* **core:** should release everything ([3c336de](https://github.com/Hyperkid123/nxtesting/commit/3c336deb1ad49afaffb34864d6cb327cdc407e6d)) - -## [1.0.9](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.8...@mmnxtest/core-1.0.9) (2023-11-28) - - -### Bug Fixes - -* **core:** patch ([084540d](https://github.com/Hyperkid123/nxtesting/commit/084540d3ea4ef150a9622864be24af0b0c6fdef1)) -* update ([fc8552b](https://github.com/Hyperkid123/nxtesting/commit/fc8552b7fb3bb9437521b5d46dee22e0a13c6113)) - -## [1.0.6](https://github.com/Hyperkid123/nxtesting/compare/v1.0.5...v1.0.6) (2023-11-28) - -## [1.0.5](https://github.com/Hyperkid123/nxtesting/compare/v1.0.4...v1.0.5) (2023-11-28) - - -### Bug Fixes - -* update ([fc8552b](https://github.com/Hyperkid123/nxtesting/commit/fc8552b7fb3bb9437521b5d46dee22e0a13c6113)) - -## [1.0.4](https://github.com/Hyperkid123/nxtesting/compare/v1.0.3...v1.0.4) (2023-11-28) - - -### Bug Fixes - -* **core:** patch ([084540d](https://github.com/Hyperkid123/nxtesting/commit/084540d3ea4ef150a9622864be24af0b0c6fdef1)) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) - - -### Bug Fixes - -* add build post target ([3d88659](https://github.com/Hyperkid123/nxtesting/commit/3d886599e905ec21bdeca96f67f050dc43087435)) -* add enable trackDeps option ([32dfe24](https://github.com/Hyperkid123/nxtesting/commit/32dfe24a94f4511a96f369ea4becae0688371ecf)) -* add postTarget cli option ([53e405f](https://github.com/Hyperkid123/nxtesting/commit/53e405f13c9ff270fb9bd1ebd2d313501d0dd453)) -* add push options for CI deployment ([56a1815](https://github.com/Hyperkid123/nxtesting/commit/56a18155d9dac9040feb2cb53b67fcb014781904)) -* **core:** update core lib ([dd8594a](https://github.com/Hyperkid123/nxtesting/commit/dd8594ace0f3ae3f7fb5ee36bbc445f311daa19a)) -* enable dependency tracking ([15ce7bc](https://github.com/Hyperkid123/nxtesting/commit/15ce7bc5bed789e3a72515bc222b5d678e3c66a6)) -* enable dependency tracking ([f101c4a](https://github.com/Hyperkid123/nxtesting/commit/f101c4acc4db78180f2c79f790c6aa01a4bdf7c0)) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) - - -### Bug Fixes - -* add build post target ([3d88659](https://github.com/Hyperkid123/nxtesting/commit/3d886599e905ec21bdeca96f67f050dc43087435)) -* add enable trackDeps option ([32dfe24](https://github.com/Hyperkid123/nxtesting/commit/32dfe24a94f4511a96f369ea4becae0688371ecf)) -* add postTarget cli option ([53e405f](https://github.com/Hyperkid123/nxtesting/commit/53e405f13c9ff270fb9bd1ebd2d313501d0dd453)) -* add push options for CI deployment ([56a1815](https://github.com/Hyperkid123/nxtesting/commit/56a18155d9dac9040feb2cb53b67fcb014781904)) -* **core:** update core lib ([dd8594a](https://github.com/Hyperkid123/nxtesting/commit/dd8594ace0f3ae3f7fb5ee36bbc445f311daa19a)) -* enable dependency tracking ([15ce7bc](https://github.com/Hyperkid123/nxtesting/commit/15ce7bc5bed789e3a72515bc222b5d678e3c66a6)) -* enable dependency tracking ([f101c4a](https://github.com/Hyperkid123/nxtesting/commit/f101c4acc4db78180f2c79f790c6aa01a4bdf7c0)) - -## [1.0.7](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.6...@mmnxtest/core-1.0.7) (2023-11-28) - - -### Bug Fixes - -* add enable trackDeps option ([32dfe24](https://github.com/Hyperkid123/nxtesting/commit/32dfe24a94f4511a96f369ea4becae0688371ecf)) - -## [1.0.6](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.5...@mmnxtest/core-1.0.6) (2023-11-28) - - -### Bug Fixes - -* **core:** update core lib ([dd8594a](https://github.com/Hyperkid123/nxtesting/commit/dd8594ace0f3ae3f7fb5ee36bbc445f311daa19a)) - -## [1.0.5](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.4...@mmnxtest/core-1.0.5) (2023-11-28) - - -### Bug Fixes - -* enable dependency tracking ([15ce7bc](https://github.com/Hyperkid123/nxtesting/commit/15ce7bc5bed789e3a72515bc222b5d678e3c66a6)) -* enable dependency tracking ([f101c4a](https://github.com/Hyperkid123/nxtesting/commit/f101c4acc4db78180f2c79f790c6aa01a4bdf7c0)) - -## [1.0.5](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.4...@mmnxtest/core-1.0.5) (2023-11-28) - - -### Bug Fixes - -* enable dependency tracking ([f101c4a](https://github.com/Hyperkid123/nxtesting/commit/f101c4acc4db78180f2c79f790c6aa01a4bdf7c0)) - -## [1.0.4](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/core-1.0.3...@mmnxtest/core-1.0.4) (2023-11-27) - - -### Bug Fixes - -* add push options for CI deployment ([56a1815](https://github.com/Hyperkid123/nxtesting/commit/56a18155d9dac9040feb2cb53b67fcb014781904)) - -## 0.1.0 (2023-11-27) - - -### Features - -* **all:** initial commit ([125124a](https://github.com/Hyperkid123/nxtesting/commit/125124a52f6c026740879cf4ca2afdffe152afb6)) - - -### Bug Fixes - -* add build post target ([3d88659](https://github.com/Hyperkid123/nxtesting/commit/3d886599e905ec21bdeca96f67f050dc43087435)) -* change ([2789590](https://github.com/Hyperkid123/nxtesting/commit/27895906d0db9257204b958fe2b48c1708a9ae8d)) -* **core:** testing comming fix ([96365bd](https://github.com/Hyperkid123/nxtesting/commit/96365bdd21b045449c9f60f9a03049495db811de)) -* **core:** update text ([723061f](https://github.com/Hyperkid123/nxtesting/commit/723061fca0331d80739463b8c7f2e329485a944f)) -* fix extra space in project names ([49832c1](https://github.com/Hyperkid123/nxtesting/commit/49832c150e0b535044bd0d60cbc427a4e4eed2b1)) -* **names:** change testing name ([4e75298](https://github.com/Hyperkid123/nxtesting/commit/4e75298228ce9ac5a13c9cd396bdcf301adfd636)) -* udpate cross dependecies ([4261719](https://github.com/Hyperkid123/nxtesting/commit/42617196da7972f8a9db499860949fe41589da46)) -* use free org name ([d917746](https://github.com/Hyperkid123/nxtesting/commit/d9177460ebeef193190b21ecc3a2c819674882a2)) diff --git a/packages/react-core/CHANGELOG.md b/packages/react-core/CHANGELOG.md index d64ca08..825c32f 100644 --- a/packages/react-core/CHANGELOG.md +++ b/packages/react-core/CHANGELOG.md @@ -1,190 +1 @@ # Changelog - -This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver). - -## [1.0.26](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.25...@mmnxtest/react-core-1.0.26) (2023-11-30) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.16` -## [1.0.25](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.24...@mmnxtest/react-core-1.0.25) (2023-11-30) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.15` -## [1.0.24](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.23...@mmnxtest/react-core-1.0.24) (2023-11-30) - - -### Bug Fixes - -* **react-core:** trigger independent build ([abb05a9](https://github.com/Hyperkid123/nxtesting/commit/abb05a9c0c3614ff86955a388489d0a9ad7755d9)) - -## [1.0.23](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.22...@mmnxtest/react-core-1.0.23) (2023-11-30) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.14` -## [1.0.22](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.21...@mmnxtest/react-core-1.0.22) (2023-11-30) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.13` -## [1.0.21](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.20...@mmnxtest/react-core-1.0.21) (2023-11-30) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.12` -## [1.0.20](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.19...@mmnxtest/react-core-1.0.20) (2023-11-30) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.11` -## [1.0.19](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.18...@mmnxtest/react-core-1.0.19) (2023-11-28) - - -### Bug Fixes - -* do not amend sync commit ([e70f640](https://github.com/Hyperkid123/nxtesting/commit/e70f640732a76d920e797f428b279bb1a598e4f6)) - -## [1.0.18](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.17...@mmnxtest/react-core-1.0.18) (2023-11-28) - - -### Bug Fixes - -* sync git history before pushing chore commit ([c825c04](https://github.com/Hyperkid123/nxtesting/commit/c825c04a3ab9684aca8c60b8783e0db681fa45b5)) - -## [1.0.17](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.16...@mmnxtest/react-core-1.0.17) (2023-11-28) - - -### Bug Fixes - -* add push command to executor ([42f3527](https://github.com/Hyperkid123/nxtesting/commit/42f35278b79366f4228c931bb8a65cefba5d5342)) - -## [1.0.16](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.15...@mmnxtest/react-core-1.0.16) (2023-11-28) - - -### Bug Fixes - -* add executor commit command ([af36e3a](https://github.com/Hyperkid123/nxtesting/commit/af36e3a20387c121467815058d8ef3aa3339826d)) - -## [1.0.15](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.14...@mmnxtest/react-core-1.0.15) (2023-11-28) - - -### Bug Fixes - -* enable version bump executor at react-core ([dcfdbcf](https://github.com/Hyperkid123/nxtesting/commit/dcfdbcf7929d0afeddea4f398d7061ad79a4134a)) - -## [1.0.14](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.13...@mmnxtest/react-core-1.0.14) (2023-11-28) - - -### Bug Fixes - -* **react-core:** trigger release ([ee3066d](https://github.com/Hyperkid123/nxtesting/commit/ee3066d458193fd23658d32d40d310f76e27c635)) -* trigger ([214bbcc](https://github.com/Hyperkid123/nxtesting/commit/214bbcc05d0c54ce33edf3e05b7c530cbc0cf4a5)) - -## [1.0.13](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.12...@mmnxtest/react-core-1.0.13) (2023-11-28) - -## [1.0.12](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.11...@mmnxtest/react-core-1.0.12) (2023-11-28) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.9` - -### Bug Fixes - -* add dependsOn default config ([5f7fd7e](https://github.com/Hyperkid123/nxtesting/commit/5f7fd7e295f0b6db624a7fcdd3ee5add3dd645d5)) - -## [1.0.6](https://github.com/Hyperkid123/nxtesting/compare/v1.0.5...v1.0.6) (2023-11-28) - -## [1.0.5](https://github.com/Hyperkid123/nxtesting/compare/v1.0.4...v1.0.5) (2023-11-28) - -## [1.0.4](https://github.com/Hyperkid123/nxtesting/compare/v1.0.3...v1.0.4) (2023-11-28) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) - - -### Bug Fixes - -* add build post target ([3d88659](https://github.com/Hyperkid123/nxtesting/commit/3d886599e905ec21bdeca96f67f050dc43087435)) -* add dependsOn default config ([5f7fd7e](https://github.com/Hyperkid123/nxtesting/commit/5f7fd7e295f0b6db624a7fcdd3ee5add3dd645d5)) -* add push options for CI deployment ([56a1815](https://github.com/Hyperkid123/nxtesting/commit/56a18155d9dac9040feb2cb53b67fcb014781904)) -* enable dependency tracking ([f101c4a](https://github.com/Hyperkid123/nxtesting/commit/f101c4acc4db78180f2c79f790c6aa01a4bdf7c0)) -* idependent realese trigger ([c7ba3c4](https://github.com/Hyperkid123/nxtesting/commit/c7ba3c409151385a27dc23965d927b34e98dcf64)) -* missing brace ([476ffe0](https://github.com/Hyperkid123/nxtesting/commit/476ffe085ef9b33934571bde3de49a458d6d582c)) -* **react-core:** add missing push project option ([445e950](https://github.com/Hyperkid123/nxtesting/commit/445e9508d23398d084bbd9d2b24188d0343e4baa)) -* **react-core:** fix release trigger ([cc41791](https://github.com/Hyperkid123/nxtesting/commit/cc41791e54c6d9325602cb88483b6aa5dd5c4fcc)) -* realese trigger ([b4e4674](https://github.com/Hyperkid123/nxtesting/commit/b4e467422dad6a20de7f91c7ac96848bb01343ad)) -* release trigger ([d3343c3](https://github.com/Hyperkid123/nxtesting/commit/d3343c3b4e078ed0cb61dfb102f9acf34539acec)) -* semantic release trigger ([a9c26d0](https://github.com/Hyperkid123/nxtesting/commit/a9c26d00929ade8e1e923119c320199fe8505f67)) -* testing independent release ([3a84adf](https://github.com/Hyperkid123/nxtesting/commit/3a84adf7891c5949623eed4433bd69b322d014b7)) -* trigger relase job ([b2127d9](https://github.com/Hyperkid123/nxtesting/commit/b2127d98f66b2e8881c9562e383c3f0da085d297)) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/v1.0.2...v1.0.3) (2023-11-28) - - -### Bug Fixes - -* add build post target ([3d88659](https://github.com/Hyperkid123/nxtesting/commit/3d886599e905ec21bdeca96f67f050dc43087435)) -* add dependsOn default config ([5f7fd7e](https://github.com/Hyperkid123/nxtesting/commit/5f7fd7e295f0b6db624a7fcdd3ee5add3dd645d5)) -* add push options for CI deployment ([56a1815](https://github.com/Hyperkid123/nxtesting/commit/56a18155d9dac9040feb2cb53b67fcb014781904)) -* enable dependency tracking ([f101c4a](https://github.com/Hyperkid123/nxtesting/commit/f101c4acc4db78180f2c79f790c6aa01a4bdf7c0)) -* idependent realese trigger ([c7ba3c4](https://github.com/Hyperkid123/nxtesting/commit/c7ba3c409151385a27dc23965d927b34e98dcf64)) -* missing brace ([476ffe0](https://github.com/Hyperkid123/nxtesting/commit/476ffe085ef9b33934571bde3de49a458d6d582c)) -* **react-core:** add missing push project option ([445e950](https://github.com/Hyperkid123/nxtesting/commit/445e9508d23398d084bbd9d2b24188d0343e4baa)) -* **react-core:** fix release trigger ([cc41791](https://github.com/Hyperkid123/nxtesting/commit/cc41791e54c6d9325602cb88483b6aa5dd5c4fcc)) -* realese trigger ([b4e4674](https://github.com/Hyperkid123/nxtesting/commit/b4e467422dad6a20de7f91c7ac96848bb01343ad)) -* release trigger ([d3343c3](https://github.com/Hyperkid123/nxtesting/commit/d3343c3b4e078ed0cb61dfb102f9acf34539acec)) -* semantic release trigger ([a9c26d0](https://github.com/Hyperkid123/nxtesting/commit/a9c26d00929ade8e1e923119c320199fe8505f67)) -* testing independent release ([3a84adf](https://github.com/Hyperkid123/nxtesting/commit/3a84adf7891c5949623eed4433bd69b322d014b7)) -* trigger relase job ([b2127d9](https://github.com/Hyperkid123/nxtesting/commit/b2127d98f66b2e8881c9562e383c3f0da085d297)) - -## [1.0.11](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.10...@mmnxtest/react-core-1.0.11) (2023-11-28) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.7` -## [1.0.10](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.9...@mmnxtest/react-core-1.0.10) (2023-11-28) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.6` -## [1.0.9](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.8...@mmnxtest/react-core-1.0.9) (2023-11-28) - -### Dependency Updates - -* `@mmnxtest/core` updated to version `1.0.5` - -### Bug Fixes - -* enable dependency tracking ([f101c4a](https://github.com/Hyperkid123/nxtesting/commit/f101c4acc4db78180f2c79f790c6aa01a4bdf7c0)) - -## [1.0.8](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.7...@mmnxtest/react-core-1.0.8) (2023-11-28) - - -### Bug Fixes - -* **react-core:** add missing push project option ([445e950](https://github.com/Hyperkid123/nxtesting/commit/445e9508d23398d084bbd9d2b24188d0343e4baa)) - -## [1.0.3](https://github.com/Hyperkid123/nxtesting/compare/@mmnxtest/react-core-1.0.2...@mmnxtest/react-core-1.0.3) (2023-11-27) - - -### Bug Fixes - -* testing independent release ([3a84adf](https://github.com/Hyperkid123/nxtesting/commit/3a84adf7891c5949623eed4433bd69b322d014b7)) - -## 0.1.0 (2023-11-27) - - -### Features - -* **all:** initial commit ([125124a](https://github.com/Hyperkid123/nxtesting/commit/125124a52f6c026740879cf4ca2afdffe152afb6)) - - -### Bug Fixes - -* add build post target ([3d88659](https://github.com/Hyperkid123/nxtesting/commit/3d886599e905ec21bdeca96f67f050dc43087435)) -* fix extra space in project names ([49832c1](https://github.com/Hyperkid123/nxtesting/commit/49832c150e0b535044bd0d60cbc427a4e4eed2b1)) -* **names:** change testing name ([4e75298](https://github.com/Hyperkid123/nxtesting/commit/4e75298228ce9ac5a13c9cd396bdcf301adfd636)) -* **react-core:** testing package independence ([5f9dd33](https://github.com/Hyperkid123/nxtesting/commit/5f9dd332433306abc10943f96dd58cf1e5fb7f93)) -* udpate cross dependecies ([4261719](https://github.com/Hyperkid123/nxtesting/commit/42617196da7972f8a9db499860949fe41589da46)) -* use free org name ([d917746](https://github.com/Hyperkid123/nxtesting/commit/d9177460ebeef193190b21ecc3a2c819674882a2))