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

chore(deps): update devdependencies (non-major) #224

Merged
merged 1 commit into from Feb 24, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 20, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node 16.11.6 -> 16.11.26 age adoption passing confidence
@types/yargs 17.0.5 -> 17.0.8 age adoption passing confidence
lint-staged 12.0.0 -> 12.3.4 age adoption passing confidence
prettier (source) 2.4.1 -> 2.5.1 age adoption passing confidence
ts-node (source) 10.4.0 -> 10.5.0 age adoption passing confidence
typescript (source) 4.4.4 -> 4.5.5 age adoption passing confidence

Release Notes

okonet/lint-staged

v12.3.4

Compare Source

Bug Fixes

v12.3.3

Compare Source

Bug Fixes
  • use config directory as cwd, when multiple configs present (#​1091) (9a14e92)

v12.3.2

Compare Source

Bug Fixes
  • handle symlinked .git directories (3a897ff)

v12.3.1

Compare Source

Bug Fixes
  • deps: update dependencies (f190fc3)

v12.3.0

Compare Source

Features
  • add --cwd option for overriding task directory (62b5b83)

v12.2.2

Compare Source

Bug Fixes
  • always search config from cwd first (4afcda5)

v12.2.1

Compare Source

Bug Fixes
  • only throw if no configurations were found (36b9546)

v12.2.0

Compare Source

Bug Fixes
  • make console task titles more explicit (1c94c27)
Features
  • support multiple configuration files (90d1035)

v12.1.7

Compare Source

Bug Fixes

v12.1.6

Compare Source

Bug Fixes
  • always run non-git tasks in the current working directory (893f3d7)

v12.1.5

Compare Source

Bug Fixes
  • search configuration starting from explicit cwd option (c7ea359)
  • using --debug option enables debug mode (5cceeb6)

v12.1.4

Compare Source

Bug Fixes

v12.1.3

Compare Source

Bug Fixes
  • deps: remove enquirer because it's now optional by listr2 (96a1a29)

v12.1.2

Compare Source

Bug Fixes
  • fix Windows JS config loading by using file:// URLs (f20ddf9)
  • fix YAML config loading (0082ec2)
  • improve error logging in loadConfig (e7b6412)

v12.1.1

Compare Source

Bug Fixes
  • await for dynamic import promise when loading JS config (e96b6d9)

v12.1.0

Compare Source

Features
  • allow loading .js config file with ESM syntax (410c3ba)
  • replace cosmiconfig with lilconfig + yaml to reduce dependencies (e7f9fa0)
  • support loading .mjs config (8d3b176)

v12.0.3

Compare Source

Bug Fixes

v12.0.2

Compare Source

Bug Fixes

v12.0.1

Compare Source

Bug Fixes
prettier/prettier

v2.5.1

Compare Source

diff

Improve formatting for empty tuple types (#​11884 by @​sosukesuzuki)
// Input
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;

// Prettier 2.5.0
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [

]
  ? Foo3
  : Foo4;

// Prettier 2.5.0 (tailingCommma = all)
// Invalid TypeScript code
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [
  ,
]
  ? Foo3
  : Foo4;

// Prettier 2.5.1
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;
Fix compatibility with Jest inline snapshot test (#​11892 by @​fisker)

A internal change in Prettier@v2.5.0 accidentally breaks the Jest inline snapshot test.

Support Glimmer's named blocks (#​11899 by @​duailibe)

Prettier already supported this feature, but it converted empty named blocks to self-closing, which is not supported by the Glimmer compiler.

See: Glimmer's named blocks.

// Input
<Component>
  <:named></:named>
</Component>

// Prettier 2.5.0
<Component>
  <:named />
</Component>

// Prettier 2.5.1
<Component>
  <:named></:named>
</Component>

v2.5.0

Compare Source

diff

🔗 Release Notes

TypeStrong/ts-node

v10.5.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1634

Added

  • Eliminate "Emit Skipped" errors (#​693, #​1345, #​1629)
    • Avoids all "Emit Skipped" errors by performing a fallback transpileOnly-style transformation.
    • Does not affect typechecking. Type errors are still detected and thrown.
    • Fallback has the same limitations as isolatedModules. This will only affect rare cases such as using const enums with preserveConstEnums disabled.
    • Fixes #​693
  • Graduate swc transpiler out of experimental; add swc: true convenience option (docs) (#​1487, #​1536, #​1613, #​1627)
    • "swc": true or --swc will use swc for faster execution
    • This feature is no longer marked "experimental." Thank you to everyone who filed bugs!
  • swc transpiler attempts to load @swc/core or @swc/wasm dependencies from your project before falling-back to global installations (#​1613, #​1627)
    • global fallback only occurs when using a global installation of ts-node
  • Add support for TypeScript's traceResolution output (docs) (#​1128, #​1491) @​TheUnlocked
  • Support import assertions in ESM loader (docs) (#​1557, #​1558, #​1559, #​1573) @​Pokute, @​geigerzaehler
    • Allows importing JSON files from ESM with the requisite flag (docs)
  • ts-node -vvv also logs absolute paths to ts-node and typescript, to make it more obvious when you're accidentally using globally-installed versions (#​1323, #​1620)
  • Add swc target "es2022" (#​1535, #​1540)
    • When you have target es2022 in tsconfig, will use swc's es2022 target

Changed

  • Initialize TypeScript compiler before starting REPL prompt (#​1498) @​TheUnlocked
    • Improves responsiveness for first line of REPL input
  • Use v8-compile-cache-lib to load typescript
  • Support both --camelCase and --hyphen-case for all CLI flags; update documentation to use --camelCase (#​1598, #​1599)
    • Not a breaking change; CLI continues to accept both forms
  • Make TSError diagnosticText property non-enumerable to prevent it from being logged below the stack (#​1632)

Fixed

Docs

Misc

  • Adds experimental experimentalResolverFeatures option, but it does not do anything yet (#​1514, #​1614)

https://github.com/TypeStrong/ts-node/milestone/4

Microsoft/TypeScript

v4.5.5

Compare Source

This patch release includes a number of fixes to language service crashes and assertion violations, along with improvements to JSX attribute snippets.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.5.4

Compare Source

This patch release includes a fix for incorrectly offering up JSX attribute snippet completions at the beginning of a tag name.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.5.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: "every weekend" in timezone Europe/Amsterdam.

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

Rebasing: Whenever PR is behind base branch, 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, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@coveralls
Copy link

coveralls commented Feb 20, 2022

Coverage Status

Coverage remained the same at 85.897% when pulling a8584a3 on renovate/dev-dependencies into 88890db on master.

@renovate renovate bot force-pushed the renovate/dev-dependencies branch from a3791fd to 24c6547 Compare February 21, 2022 07:05
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 24c6547 to a8584a3 Compare February 24, 2022 17:30
@chimurai chimurai merged commit 7327ad0 into master Feb 24, 2022
@chimurai chimurai deleted the renovate/dev-dependencies branch February 24, 2022 22:22
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.

None yet

3 participants