Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: swc-project/swc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d17a6653c4f52aa1899b7396113408915103dcb6
Choose a base ref
...
head repository: swc-project/swc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a9aed171f83773a61f106324cc5cc33c770ea315
Choose a head ref
  • 3 commits
  • 5 files changed
  • 2 contributors

Commits on Aug 25, 2022

  1. 1
    Copy the full SHA
    d483eb1 View commit details
  2. chore: Publish crates

    swc-bot committed Aug 25, 2022
    Copy the full SHA
    82f104e View commit details
  3. Copy the full SHA
    a9aed17 View commit details
Showing with 7 additions and 4 deletions.
  1. +3 −0 CHANGELOG.md
  2. +1 −1 Cargo.lock
  3. +1 −1 crates/swc/Cargo.toml
  4. +1 −1 packages/swc-helpers/package.json
  5. +1 −1 packages/swc-helpers/src/_class_static_private_field_update.mjs
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -14,6 +14,9 @@
- **(es/fixer)** Wrap expressions in the left of a binary expression (#5586) ([3d485d2](https://github.com/swc-project/swc/commit/3d485d26814516351bd5591502c64811f77f5385))


- **(es/helpers)** Fix `_classStaticPrivateFieldUpdate` (#5620) ([d483eb1](https://github.com/swc-project/swc/commit/d483eb12f458fb86675d8146c84032524fd7ccde))


- **(swc_core)** Re-export `swc_cached` (#5605) ([7fcecb8](https://github.com/swc-project/swc/commit/7fcecb8e63faa64226b87e34b8cd4fdd0a6a7ab7))

### Features
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.219.0"
version = "0.219.1"

[lib]
bench = false
2 changes: 1 addition & 1 deletion packages/swc-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swc/helpers",
"version": "0.4.10",
"version": "0.4.11",
"description": "External helpers for the swc project.",
"esnext": "src/index.mjs",
"module": "src/index.mjs",
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import classCheckPrivateStaticAccess from './_class_check_private_static_access.mjs';
import classCheckPrivateStaticFieldDescriptor from './_class_check_private_static_access.mjs';
import classCheckPrivateStaticFieldDescriptor from './_class_check_private_static_field_descriptor.mjs';
import classApplyDescriptorUpdate from './_class_apply_descriptor_update.mjs';

export default function _classStaticPrivateFieldUpdate(receiver, classConstructor, descriptor) {