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 #164

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 17, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@swc-node/register ~1.4.2 -> ~1.10.0 age adoption passing confidence
@swc/cli ~0.1.62 -> ~0.6.0 age adoption passing confidence
@swc/core (source) ~1.3.51 -> ~1.10.0 age adoption passing confidence
@swc/helpers (source) 0.5.1 -> 0.5.15 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

v1.5.1

Compare Source

Bug Fixes
  • register: move typescript to devDependencies (c0011ca)

v1.5.0

Compare Source

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

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 dependency swc-plugin-coverage-instrument to ^0.0.25 (#​9676) (b8d255b)

v1.7.39

Compare Source

Bug Fixes
  • (es/compat) Add missing visit children for destructuring (#​9658) (32116a0)

  • (es/parser) Correct > and < when exit type context (#​9653) (abffc07)

  • (es/proposal) Use tsc version of explicit resource management (#​9585) (f735108)

  • (wasm-typescript) Fix option types of functions (#​9662) (4cbe33c)

Features
Miscellaneous Tasks

v1.7.36

Compare Source

Bug Fixes
  • (es) Run esnext transforms on esnext target (#​9644) (8a19201)

  • (es/codegen) Emit space after div if rhs has leading comment (#​9631) (f2be26e)

  • (es/lints) Correct the false positive error of TS2309 (#​9635) (f74c1f3)

  • (es/minifier) Only merge last if return (#​9633) (6f52949)

  • (es/minifier) Check type of assignment target before merging assignments (#​9617) (4436621)

Features
Miscellaneous Tasks

v1.7.35

Compare Source

Bug Fixes
Features
  • (bindings/html) Accept Buffer|string instead of Buffer (#​9625) (62edb36)

  • (es/preset-env) Update preset-env data (#​9573) (9a11d34)

  • (es/testing) Parse test code as a Program instead of a Module (#​9264) (166b858)

  • (es/testing) Parse test code as a Program instead of a Module (#​9623) (bfea322)

Miscellaneous Tasks
Performance
Refactor
  • (es/typescript) Simplifying enum and namespace transforms (#​9558) (2480bb0)
Build

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 c449f52 to b3572a3 Compare September 7, 2023 11:15
@renovate renovate bot changed the title chore(deps): update dependency @swc-node/register to ~1.6.0 chore(deps): update swc monorepo Sep 7, 2023
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from b3572a3 to 1536750 Compare September 26, 2023 13:06
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 6 times, most recently from e4ba703 to 000cf92 Compare January 28, 2024 15:24
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from e5f6259 to 905ff4d Compare February 5, 2024 09:08
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 05ee75a to b6a53e4 Compare February 19, 2024 07:53
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from b6a53e4 to dac2caa Compare February 25, 2024 09:53
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 4 times, most recently from 50d73d4 to 098bcd4 Compare March 8, 2024 07:04
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 4 times, most recently from 0af4418 to e559bca Compare March 18, 2024 02:13
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 28ab09b to 47aa2d4 Compare March 26, 2024 09:10
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from bc7df19 to 5c83df7 Compare April 1, 2024 04:54
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from f8ab2ff to d7777cb Compare April 9, 2024 08:08
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 4 times, most recently from 120b974 to 0841c78 Compare November 6, 2024 17:01
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from a38c2df to edfc981 Compare November 11, 2024 06:08
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 3f81dee to b71085d Compare November 22, 2024 10:52
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 4 times, most recently from bde90d1 to 09b1678 Compare December 4, 2024 07:09
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 09b1678 to d9ff854 Compare December 9, 2024 11:19
@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 f76415a to 020ae3c Compare December 30, 2024 04:57
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from faa4079 to 56fffbe Compare January 10, 2025 10:27
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 073c48f to 166057a Compare January 23, 2025 17:47
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 3 times, most recently from 120f7c8 to 31246ee Compare January 30, 2025 19:31
@renovate renovate bot force-pushed the renovate/swc-monorepo branch 2 times, most recently from 16fcd6d to 9031c09 Compare February 8, 2025 09:06
@renovate renovate bot force-pushed the renovate/swc-monorepo branch from 9031c09 to c4ef805 Compare February 9, 2025 13:21
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