Skip to content

chore(deps): update swc monorepo#27

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/swc-monorepo
Open

chore(deps): update swc monorepo#27
renovate[bot] wants to merge 1 commit intomainfrom
renovate/swc-monorepo

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@swc-node/register 1.5.11.11.1 age confidence
@swc/core (source) 1.2.2201.15.21 age confidence

Release Notes

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

v1.11.1

Compare Source

v1.10.10

Compare Source

v1.10.9

Compare Source

What's Changed

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.10.8...@​swc-node/register@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@1.10.7...@​swc-node/register@1.10.8

v1.10.7

Compare Source

v1.10.6

Compare Source

v1.10.5

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.10.3...@​swc-node/register@1.10.5

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@1.10.2...@​swc-node/register@1.10.3

v1.10.2

Compare Source

v1.10.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.9.1...@​swc-node/register@1.10.1

v1.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/swc-project/swc-node/compare/@swc-node/register@1.9.1...@​swc-node/register@1.10.0

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@1.8.0...@​swc-node/register@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@1.10.5...@​swc-node/register@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@1.10.5...@​swc-node/register@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@1.10.1...@​swc-node/register@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@1.10.1...@​swc-node/register@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@1.10.1...@​swc-node/register@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@1.5.9...@​swc-node/register@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/swc (@​swc/core)

v1.15.21

Compare Source

Bug Fixes
Documentation
Features
Performance
Refactor
Testing
Ci

v1.15.18

Compare Source

Bug Fixes
Documentation
Features
Ci

v1.15.17

Compare Source

Documentation
Features

v1.15.13

Compare Source

Bug Fixes
  • (errors) Avoid panic on invalid diagnostic spans (#​11561) (b24b8e0)

  • (es/helpers) Fix _object_without_properties crash on primitive values (#​11571) (4f35904)

  • (es/jsx) Preserve whitespace before HTML entities (#​11521) (64be077)

  • (es/minifier) Do not merge if statements with different local variable values (#​11518) (3e63627)

  • (es/minifier) Prevent convert_tpl_to_str when there's emoji under es5 (#​11529) (ff6cf88)

  • (es/minifier) Inline before merge if (#​11526) (aa5a9ac)

  • (es/minifier) Preserve array join("") nullish semantics (#​11558) (d477f61)

  • (es/minifier) Inline side-effect-free default params (#​11564) (1babda7)

  • (es/parser) Fix generic arrow function in TSX mode (#​11549) (366a16b)

  • (es/react) Preserve first-line leading whitespace with entities (#​11568) (fc62617)

  • (es/regexp) Transpile unicode property escapes in RegExp constructor (#​11554) (476d544)

Documentation
Features
Refactor
  • (es/parser) Compare token kind rather than strings (#​11531) (5872ffa)

  • (es/typescript) Run typescript transform in two passes (#​11532) (b069558)

  • (es/typescript) Precompute namespace import-equals usage in semantic pass (#​11534) (b7e87c7)

Testing
Ci

v1.15.11

Compare Source

Bug Fixes

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 from 5a1bcdd to 75272a2 Compare December 8, 2024 23:12
@renovate renovate bot changed the title chore(deps): update dependency @swc-node/register to v1.10.9 chore(deps): update swc monorepo Dec 8, 2024
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 75272a2 to 1a0f559 Compare December 9, 2024 09:05
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 079cc24 to 445f803 Compare December 30, 2024 04:10
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 007d82a to f4ab01e Compare January 10, 2025 09:23
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 4c66204 to 4bc2d28 Compare January 21, 2025 18:11
@renovate renovate bot changed the title chore(deps): update swc monorepo chore(deps): update swc monorepo to v1.10.9 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 4bc2d28 to f283417 Compare January 27, 2025 13:21
@renovate renovate bot changed the title chore(deps): update swc monorepo to v1.10.9 chore(deps): update swc monorepo Jan 27, 2025
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 7a9df1e to 9230c35 Compare February 4, 2025 02:25
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 83d3403 to d54b1df Compare February 13, 2025 07:26
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 8d3a7e8 to fc5b4cb Compare February 19, 2025 11:48
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 72b1de2 to f514693 Compare February 28, 2025 14:50
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 79c5630 to aaf0f00 Compare March 7, 2025 23:21
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 4 times, most recently from cae35d3 to ffe761f Compare March 17, 2025 22:21
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from cb7e8fd to 1719963 Compare June 13, 2025 01:32
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 6 times, most recently from eaa5231 to 323be9e Compare June 26, 2025 03:58
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 8cb29ac to 7d8de60 Compare July 8, 2025 04:52
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from cf60009 to afa1375 Compare July 19, 2025 22:02
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from afa1375 to dd98dc1 Compare July 23, 2025 00:27
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from dd98dc1 to f92b89e Compare August 7, 2025 11:08
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 749a253 to c133a35 Compare August 24, 2025 12:28
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from c133a35 to 0544b1c Compare August 31, 2025 10:37
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 27dc17b to 123df59 Compare September 28, 2025 17:11
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 123df59 to aac7f41 Compare October 21, 2025 16:59
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 1b59665 to 22663a0 Compare November 20, 2025 22:28
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 22663a0 to 86dafa4 Compare December 3, 2025 20:07
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 5126e3f to 7f0461a Compare December 18, 2025 06:28
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