Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update swc monorepo #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 6, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@swc-node/register 1.5.1 -> 1.10.9 age adoption passing confidence
@swc/cli ~0.1.55 -> ~0.6.0 age adoption passing confidence
@swc/core (source) 1.2.247 -> 1.10.9 age adoption passing confidence
@swc/helpers (source) ~0.4.11 -> ~0.5.0 age adoption passing confidence

Release Notes

swc-project/swc-node (@​swc-node/register)

v1.10.9

Compare Source

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).10.8...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).10.9

v1.10.8

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).10.7...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).10.8

v1.10.7

Compare Source

v1.10.6

Compare Source

v1.10.5

Compare Source

v1.10.4

Compare Source

v1.10.3

Compare Source

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).10.2...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).10.3

v1.10.2

Compare Source

v1.10.1

Compare Source

v1.10.0

Compare Source

v1.9.2

Compare Source

v1.9.1

Compare Source

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).8.0...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).9.1

v1.9.0

Compare Source

v1.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/core](https://redirect.github.com/swc-node/core)[@​1](https://redirect.github.com/1).10.5...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).8.0

v1.6.8

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/core](https://redirect.github.com/swc-node/core)[@​1](https://redirect.github.com/1).10.5...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).6.8

v1.6.7

Compare Source

v1.6.6

Compare Source

v1.6.5

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/core](https://redirect.github.com/swc-node/core)[@​1](https://redirect.github.com/1).10.1...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).6.5

v1.6.4

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/core](https://redirect.github.com/swc-node/core)[@​1](https://redirect.github.com/1).10.1...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).6.4

v1.6.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/core](https://redirect.github.com/swc-node/core)[@​1](https://redirect.github.com/1).10.1...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).6.3

v1.6.2

Compare Source

Bug Fixes
  • register: enforece module option in register/esm (#​694) (860d1f6)

v1.6.1

Compare Source

Bug Fixes
  • register: include esm files (8d6b0b7)

v1.6.0

Compare Source

Experimental esm support

node --loader=@​swc-node/register/esm ./src/index.ts in this project

src/index.ts

import assert from 'node:assert'
import test from 'node:test'

import { supportedExtensions } from 'file-type' // pure esm project

await test('file-type should work', () => {
  assert.ok(supportedExtensions.has('jpg'))
})

tsconfig.json

{
  "compilerOptions": {
    "target": "ESNext",
    "module": "ESNext",
  }
}

package.json

{
  "type": "module"
}

output

> node --loader=@​swc-node/register/esm ./src/index.ts

(node:77682) ExperimentalWarning: Custom ESM Loaders is an experimental feature. This feature could change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
(node:77682) ExperimentalWarning: The test runner is an experimental feature. This feature could change at any time
TAP version 13

### Subtest: file-type should work
ok 1 - file-type should work
  ---
  duration_ms: 0.642416
  ...
1..1

### tests 1
### pass 1

### fail 0
### cancelled 0

### skipped 0
### todo 0

### duration_ms 5.702292

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/[@​swc-node/jest](https://redirect.github.com/swc-node/jest)[@​1](https://redirect.github.com/1).5.9...[@​swc-node/register](https://redirect.github.com/swc-node/register)[@​1](https://redirect.github.com/1).6.0

v1.5.8

Compare Source

Bug Fixes

v1.5.6

Compare Source

Bug Fixes
  • register: always inline swc helpers (1d557ec)
  • register: react configuration (af643b8)

v1.5.5

Compare Source

Note: Version bump only for package @​swc-node/register

v1.5.4

Compare Source

Bug Fixes

v1.5.3

Compare Source

v1.5.2

Compare Source

Bug Fixes

New Contributors

swc-project/pkgs (@​swc/cli)

v0.1.65

Compare Source

swc-project/swc (@​swc/core)

v1.10.9

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
  • (es/minifier) Print slow files from minify-all example (#​9899) (2d87b89)
Performance

v1.10.8

Compare Source

Bug Fixes
Features
  • (typescript) Check computed property names of ts signatures (#​9867) (caed78a)
Performance
Refactor

v1.10.7

Compare Source

Bug Fixes
Documentation
  • Update the link to the team (0fcdc31)
Features
Testing
  • (parallel) Add test to debug segfault on windows x64 (#​9857) (ae53a35)
Build

v1.10.6

Compare Source

Performance
  • (es/minifier) Speed up merge_sequences_in_exprs by caching computation (#​9843) (6e5632f)

v1.10.4

Compare Source

Bug Fixes

v1.10.3

Compare Source

Bug Fixes
  • (es/codegen) Emit semicolon after using declarations (#​9816) (556d924)

v1.10.2

Compare Source

Bug Fixes
Documentation

v1.10.1

Compare Source

Bug Fixes
  • (es/resolver) Fix wrong syntax context of vars with the same names as catch params (#​9786) (5a44c6b)
Features

v1.10.0

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Refactor

v1.9.3

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
Performance
Refactor

v1.9.2

Compare Source

Bug Fixes
Features

v1.9.1

Compare Source

Bug Fixes

v1.9.0

Compare Source

Bug Fixes
Features
Miscellaneous Tasks

v1.8.0

Compare Source

Bug Fixes
  • (es/typescript) Handle multiline type parameters in async arrow functions (#​9704) (c5ed19c)

  • (es/typescript) Handle ASI hazards in fast type strip (#​9707) (c135f71)

Features
Performance

v1.7.42

Compare Source

Bug Fixes
Features
  • (es/minifier) Optimize switch with side effect and termination tests (#​9677) (7344a63)

  • (es/parser) Ability to get script's potential module errors (#​9682) (2bbd1e8)

Miscellaneous Tasks
Performance

v1.7.40

Compare Source

Bug Fixes
Documentation
Miscellaneous Tasks
  • (deps) Update depend

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/swc-monorepo branch 6 times, most recently from 9599eda to 1eda9ca Compare July 14, 2024 06:46
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 4 times, most recently from b520a97 to e4df41c Compare July 21, 2024 12:36
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 94945e9 to 489532b Compare July 27, 2024 20:11
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 4 times, most recently from b635125 to a1bac18 Compare August 6, 2024 08:24
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from d2b85d4 to 48bf4ea Compare August 14, 2024 12:06
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 8ad655e to 8d58765 Compare August 24, 2024 12:50
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 5 times, most recently from a1f37f8 to f75c7f9 Compare September 3, 2024 04:29
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from ef7543a to 52803d7 Compare September 11, 2024 05:01
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 52803d7 to 536e33b Compare September 11, 2024 13:40
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 304dd26 to 36c8129 Compare September 27, 2024 12:20
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 91bbb87 to b6582cc Compare October 15, 2024 17:31
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 13ca399 to 39618ae Compare October 26, 2024 13:42
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 8c2876d to 922240a Compare November 4, 2024 04:00
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 56ea272 to 7a7f348 Compare November 11, 2024 06:22
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from ff57ce9 to 70ae1b1 Compare November 22, 2024 11:46
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 82740d9 to d6e1632 Compare December 4, 2024 07:18
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from d6e1632 to af2ea52 Compare December 9, 2024 09:53
@renovate renovate bot changed the title chore(deps): update swc monorepo fix(deps): update swc monorepo Dec 10, 2024
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from e3d357e to 19fa214 Compare December 30, 2024 02:13
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from f9a603f to 05875e0 Compare January 10, 2025 10:03
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 988b13e to 5924347 Compare January 21, 2025 14:27
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 5924347 to 5a6f0c4 Compare January 23, 2025 22:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants