Skip to content

Commit

Permalink
chore(release): release packages
Browse files Browse the repository at this point in the history
  • Loading branch information
leegeunhyeok committed Oct 9, 2023
1 parent 4a63b94 commit 305898e
Show file tree
Hide file tree
Showing 20 changed files with 78 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/dev-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/dev-server/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/internal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/internal/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/symbolicate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/symbolicate/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 4 additions & 0 deletions packages/transformer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/transformer/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

1 comment on commit 305898e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🔴 Statements 16.13% 358/2219
🔴 Branches 19.36% 140/723
🔴 Functions 11.11% 71/639
🔴 Lines 15.33% 314/2048

Test suite run success

98 tests passing in 14 suites.

Report generated by 🧪jest coverage report action from 305898e

Please sign in to comment.