diff --git a/CHANGELOG.md b/CHANGELOG.md index f88c43e5..857fd330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +### Features + +- add config option ([5ccf07b](https://github.com/leegeunhyeok/react-native-esbuild/commit/5ccf07be808b5c8b22f1e516e5757e3f968dc365)) +- supports symbolicate for web ([4a63b94](https://github.com/leegeunhyeok/react-native-esbuild/commit/4a63b941aa4bb497cfbc937c88c99d3ce844f9d9)) + +### Code Refactoring + +- **cli:** update command descriptions ([3a8846d](https://github.com/leegeunhyeok/react-native-esbuild/commit/3a8846d40b2df851fa5db7a3d5b8991ad965d97b)) +- move some utilities to static methods ([5660f79](https://github.com/leegeunhyeok/react-native-esbuild/commit/5660f793bb2bf34842afa781bec37fda4d0fc01c)) +- remove useless log ([2f5d825](https://github.com/leegeunhyeok/react-native-esbuild/commit/2f5d8252911f7303a03f275ac90d4385cae64f9b)) + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 4b6b4f54..9d0179c4 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "npmClient": "yarn", "command": { "version": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index a01a3e03..6ac137ff 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +### Features + +- add config option ([5ccf07b](https://github.com/leegeunhyeok/react-native-esbuild/commit/5ccf07be808b5c8b22f1e516e5757e3f968dc365)) + +### Code Refactoring + +- **cli:** update command descriptions ([3a8846d](https://github.com/leegeunhyeok/react-native-esbuild/commit/3a8846d40b2df851fa5db7a3d5b8991ad965d97b)) +- move some utilities to static methods ([5660f79](https://github.com/leegeunhyeok/react-native-esbuild/commit/5660f793bb2bf34842afa781bec37fda4d0fc01c)) + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Bug Fixes diff --git a/packages/cli/package.json b/packages/cli/package.json index d5221066..fcde22b3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/cli", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "cli tool for @react-native-esbuild", "keywords": [ "react-native", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 051e20a4..dfe27c33 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +**Note:** Version bump only for package @react-native-esbuild/config + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Bug Fixes diff --git a/packages/config/package.json b/packages/config/package.json index c2e3b91a..b6b03464 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/config", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "shared configs for @react-native-esbuild", "keywords": [ "react-native", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 7db6f7a2..ecbdecca 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +### Features + +- add config option ([5ccf07b](https://github.com/leegeunhyeok/react-native-esbuild/commit/5ccf07be808b5c8b22f1e516e5757e3f968dc365)) +- supports symbolicate for web ([4a63b94](https://github.com/leegeunhyeok/react-native-esbuild/commit/4a63b941aa4bb497cfbc937c88c99d3ce844f9d9)) + +### Code Refactoring + +- move some utilities to static methods ([5660f79](https://github.com/leegeunhyeok/react-native-esbuild/commit/5660f793bb2bf34842afa781bec37fda4d0fc01c)) +- remove useless log ([2f5d825](https://github.com/leegeunhyeok/react-native-esbuild/commit/2f5d8252911f7303a03f275ac90d4385cae64f9b)) + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Miscellaneous Chores diff --git a/packages/core/package.json b/packages/core/package.json index 58b32bbf..ff10301d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/core", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "core of @react-native-esbuild", "keywords": [ "react-native", diff --git a/packages/dev-server/CHANGELOG.md b/packages/dev-server/CHANGELOG.md index 7a4ba8f6..1c2b1efa 100644 --- a/packages/dev-server/CHANGELOG.md +++ b/packages/dev-server/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +### Features + +- supports symbolicate for web ([4a63b94](https://github.com/leegeunhyeok/react-native-esbuild/commit/4a63b941aa4bb497cfbc937c88c99d3ce844f9d9)) + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Miscellaneous Chores diff --git a/packages/dev-server/package.json b/packages/dev-server/package.json index c9a5769b..0fafc216 100644 --- a/packages/dev-server/package.json +++ b/packages/dev-server/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/dev-server", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "development server for @react-native-esbuild", "keywords": [ "react-native", diff --git a/packages/internal/CHANGELOG.md b/packages/internal/CHANGELOG.md index 5b314a6c..0b852690 100644 --- a/packages/internal/CHANGELOG.md +++ b/packages/internal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +**Note:** Version bump only for package @react-native-esbuild/internal + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Miscellaneous Chores diff --git a/packages/internal/package.json b/packages/internal/package.json index 2d814807..f445f9c8 100644 --- a/packages/internal/package.json +++ b/packages/internal/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/internal", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "shared configs and helpers for internal of react-native", "keywords": [ "react-native", diff --git a/packages/plugins/CHANGELOG.md b/packages/plugins/CHANGELOG.md index a81d0065..27b67cf7 100644 --- a/packages/plugins/CHANGELOG.md +++ b/packages/plugins/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +**Note:** Version bump only for package @react-native-esbuild/plugins + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Miscellaneous Chores diff --git a/packages/plugins/package.json b/packages/plugins/package.json index a4711869..12934e1e 100644 --- a/packages/plugins/package.json +++ b/packages/plugins/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/plugins", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "plugins for @react-native-esbuild", "keywords": [ "react-native", diff --git a/packages/symbolicate/CHANGELOG.md b/packages/symbolicate/CHANGELOG.md index 6fcaf2a2..6a6d5abf 100644 --- a/packages/symbolicate/CHANGELOG.md +++ b/packages/symbolicate/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +**Note:** Version bump only for package @react-native-esbuild/symbolicate + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) **Note:** Version bump only for package @react-native-esbuild/symbolicate diff --git a/packages/symbolicate/package.json b/packages/symbolicate/package.json index 90b2f403..fc0b8574 100644 --- a/packages/symbolicate/package.json +++ b/packages/symbolicate/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/symbolicate", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "symbolicate utilities for @react-native-esbuild", "keywords": [ "react-native", diff --git a/packages/transformer/CHANGELOG.md b/packages/transformer/CHANGELOG.md index 6bfa4539..bc4e60b3 100644 --- a/packages/transformer/CHANGELOG.md +++ b/packages/transformer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +**Note:** Version bump only for package @react-native-esbuild/transformer + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) ### Miscellaneous Chores diff --git a/packages/transformer/package.json b/packages/transformer/package.json index aa05d6aa..12de2f75 100644 --- a/packages/transformer/package.json +++ b/packages/transformer/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/transformer", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "transformer for @react-native-esbuild", "keywords": [ "react-native", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index beb09cc2..aac8de38 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.0-beta.6](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.5...v0.1.0-beta.6) (2023-10-09) + +### Features + +- add config option ([5ccf07b](https://github.com/leegeunhyeok/react-native-esbuild/commit/5ccf07be808b5c8b22f1e516e5757e3f968dc365)) + ## [0.1.0-beta.5](https://github.com/leegeunhyeok/react-native-esbuild/compare/v0.1.0-beta.4...v0.1.0-beta.5) (2023-10-08) **Note:** Version bump only for package @react-native-esbuild/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index bb602d71..e56230f9 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@react-native-esbuild/utils", - "version": "0.1.0-beta.5", + "version": "0.1.0-beta.6", "description": "utilities for @react-native-esbuild", "keywords": [ "react-native",