iam-medvedev / esbuild-plugin-less

esbuild plugin for less files
https://npmjs.com/package/esbuild-plugin-less
Do What The F*ck You Want To Public License
42 stars 12 forks source link

chore(deps): update dependency esbuild to v0.13.3 #38

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild 0.13.2 -> 0.13.3 age adoption passing confidence

Release Notes

evanw/esbuild ### [`v0.13.3`](https://togithub.com/evanw/esbuild/blob/master/CHANGELOG.md#​0133) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.13.2...v0.13.3) - Support TypeScript type-only import/export specifiers ([#​1637](https://togithub.com/evanw/esbuild/pull/1637)) This release adds support for a new TypeScript syntax feature in the upcoming version 4.5 of TypeScript. This feature lets you prefix individual imports and exports with the `type` keyword to indicate that they are types instead of values. This helps tools such as esbuild omit them from your source code, and is necessary because esbuild compiles files one-at-a-time and doesn't know at parse time which imports/exports are types and which are values. The new syntax looks like this: ```ts // Input TypeScript code import { type Foo } from 'foo' export { type Bar } // Output JavaScript code (requires "importsNotUsedAsValues": "preserve" in "tsconfig.json") import {} from "foo"; export {}; ``` See [microsoft/TypeScript#​45998](https://togithub.com/microsoft/TypeScript/pull/45998) for full details. From what I understand this is a purely ergonomic improvement since this was already previously possible using a type-only import/export statements like this: ```ts // Input TypeScript code import type { Foo } from 'foo' export type { Bar } import 'foo' export {} // Output JavaScript code (requires "importsNotUsedAsValues": "preserve" in "tsconfig.json") import "foo"; export {}; ``` This feature was contributed by [@​g-plane](https://togithub.com/g-plane).

Configuration

πŸ“… Schedule: 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.

πŸ”• Ignore: Close this PR and you won't be reminded about this update again.



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

codecov[bot] commented 2 years ago

Codecov Report

Merging #38 (f6b899d) into master (18ce679) will not change coverage. The diff coverage is n/a.

:exclamation: Current head f6b899d differs from pull request most recent head aaaa37e. Consider uploading reports for the commit aaaa37e to get more accurate results Impacted file tree graph

@@           Coverage Diff           @@
##           master      #38   +/-   ##
=======================================
  Coverage   86.36%   86.36%           
=======================================
  Files           2        2           
  Lines          44       44           
  Branches        6        6           
=======================================
  Hits           38       38           
  Partials        6        6           

Continue to review full report at Codecov.

Legend - Click here to learn more Ξ” = absolute <relative> (impact), ΓΈ = not affected, ? = missing data Powered by Codecov. Last update da500a7...aaaa37e. Read the comment docs.

github-actions[bot] commented 2 years ago

:tada: This PR is included in version 1.1.4 :tada:

The release is available on:

Your semantic-release bot :package::rocket: