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

Update dependency esbuild to v0.8.8 #28

Merged
merged 1 commit into from
Nov 16, 2020
Merged

Update dependency esbuild to v0.8.8 #28

merged 1 commit into from
Nov 16, 2020

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 16, 2020

This PR contains the following updates:

Package Type Update Change
esbuild devDependencies patch 0.8.7 -> 0.8.8

Release Notes

evanw/esbuild

v0.8.8

Compare Source

  • Add the --banner and --footer options (#​482)

    You can now use the --banner and --footer options to insert code before and/or after the code that esbuild generates. This is usually used to insert a banner comment at the top of your bundle. However, you can also use this for other purposes such as wrapping your whole bundle in --banner='try {' and --footer='} catch (e) { reportError(e) }'. Note that since these strings can contain partial JavaScript syntax, esbuild will not do anything to ensure the result is valid JavaScript syntax. This feature was contributed by @​Gelio.

  • Be more permissive inside TypeScript declare contexts

    These cases are now allowed by esbuild:

    • TypeScript supports a special global { ... } block inside declare module
    • TypeScript allows arbitrary import and export statements inside declare module
    • The TypeScript-specific export as namespace name; syntax is now ignored inside declare module.
    • A trailing comma after a rest argument is disallowed in JavaScript but is allowed in TypeScript if you use declare function
  • Log output to stderr has been overhauled

    The formatting is now slightly different. Line numbers are now displayed to the left of the source text and source text is now dimmed to make the log messages themselves stand out more. And log messages now support "notes" which are additional messages with different attached locations.

    Before:

    example.ts:13:6: error: "test" has already been declared
    class test extends BaseTest {
          ~~~~
    

    After:

     > example.ts: error: "test" has already been declared
        13 │ class test extends BaseTest {
           ╵       ~~~~
          example.ts: note: "test" was originally declared here
         4 │ function test(name: string, callback: () => void) {
           ╵          ~~~~
    

Renovate 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.


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

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

@codecov
Copy link

codecov bot commented Nov 16, 2020

Codecov Report

Merging #28 (449f3dd) into main (09b44f4) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##              main       #28   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            6         6           
  Lines           59        59           
  Branches         5         5           
=========================================
  Hits            59        59           
Flag Coverage Δ
unittests 100.00% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.


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 09b44f4...449f3dd. Read the comment docs.

@gagoar gagoar merged commit 0c903bd into main Nov 16, 2020
@gagoar gagoar deleted the renovate/esbuild-0.x branch November 16, 2020 20:12
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.

2 participants