Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/tslib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.3.1
Choose a base ref
...
head repository: microsoft/tslib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.4.0
Choose a head ref
  • 14 commits
  • 7 files changed
  • 9 contributors

Commits on Jan 6, 2021

  1. feat: Add TSDoc comments

    ExE-Boss committed Jan 6, 2021
    Configuration menu
    Copy the full SHA
    ced46b6 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2021

  1. adds __classPrivateFieldIn

    Signed-off-by: aclaymore <[email protected]>
    acutmore committed Sep 22, 2021
    Configuration menu
    Copy the full SHA
    ad11408 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2021

  1. [squash] add export to index.js

    Signed-off-by: aclaymore <[email protected]>
    acutmore committed Sep 24, 2021
    Configuration menu
    Copy the full SHA
    c1fbc71 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #157 from bloomberg/private-fields-in-in

    Add new private class element helper: __classPrivateFieldIn
    sandersn authored Sep 24, 2021
    Configuration menu
    Copy the full SHA
    481d352 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2021

  1. Don't require license to be included by bundlers

    #96 updated the license to zero clause BSD so that bundlers didn't need to keep the license intact.
    
    However, the `/*!` still signifies to bundlers such as Webpack, Uglify that they should keep this license intact.
    
    https://stackoverflow.com/questions/11248363/the-purpose-of-starting-an-initial-comment-with-in-javascript-and-css-files
    
    > This is for legal reasons. By default comments with `@license`, `@preserve` or starting with `/*!` are preserved
    
    webpack/webpack#324 (comment)
    penx authored Nov 15, 2021
    Configuration menu
    Copy the full SHA
    f0563d9 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2021

  1. Merge pull request #160 from penx/patch-1

    Don't require license to be included by bundlers
    Orta Therox authored Nov 25, 2021
    Configuration menu
    Copy the full SHA
    7def9b5 View commit details
    Browse the repository at this point in the history
  2. Update license within js files

    Further to #160, make license changes to tslib.d.ts, tslib.es6.js and tslib.js files too
    penx committed Nov 25, 2021
    Configuration menu
    Copy the full SHA
    5b8af4e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #164 from penx/license-update

    Update license within js files
    Orta Therox authored Nov 25, 2021
    Configuration menu
    Copy the full SHA
    7012efc View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2022

  1. Update package.json: changed pattern "./" to "./*" (#135)

    * Update package.json: changed pattern "./" to "./*"
    
    On Angular when executes command 'ng build --prod': 
    - Generating browser application bundles...(node:16716) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package at {{APP_PATH}}\node_modules\tslib\package.json.
    Update this package.json to use a subpath pattern like "./*".
    (Use `node --trace-deprecation ...` to show where the warning was created)
    
    * Use both export map syntaxes to support older NodeJS
    
    Co-authored-by: ExE Boss <[email protected]>
    
    Co-authored-by: Ron Buckton <[email protected]>
    Co-authored-by: ExE Boss <[email protected]>
    3 people authored Feb 8, 2022
    Configuration menu
    Copy the full SHA
    06853a8 View commit details
    Browse the repository at this point in the history
  2. optimize __createBinding (#168)

    Reflect microsoft/TypeScript#46997:
    
    When the binding is itself one that was created by `__createBinding`,
    re-use its descriptor, which avoids piling multiple levels of getters in
    the case of multiple levels of exports.
    
    In addition, reuse a descriptor if the bindings is marked as
    non-writable and non-configurable, which makes a getter not
    necessary.  (This can be done manually if needed, even though tsc
    doesn't do it now.)
    
    Could be considered as a fix for #165 -- first, this PR prevents piling
    up multiple layers of getters.  Second, it allows a hack of adding
    
        if (typeof exports === "object") exports = Object.freeze(exports);
    
    to avoid getters altogether.  (And in the future, tsc could mark `const`
    exports as non-writable and non-configurable which would make it
    possible to avoid this hack.)
    elibarzilay authored Feb 8, 2022
    Configuration menu
    Copy the full SHA
    15f98b6 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2022

  1. Merge branch 'docs/add-tsdoc' of https://github.com/EB-Forks/tslib in…

    …to EB-Forks-docs/add-tsdoc
    
    # Conflicts:
    #	tslib.d.ts
    rbuckton committed Feb 9, 2022
    Configuration menu
    Copy the full SHA
    fbf48a8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c827964 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2022

  1. Update package.json

    rbuckton authored Apr 22, 2022
    Configuration menu
    Copy the full SHA
    5b7da89 View commit details
    Browse the repository at this point in the history
  2. Update bower.json

    rbuckton authored Apr 22, 2022
    Configuration menu
    Copy the full SHA
    a7129c7 View commit details
    Browse the repository at this point in the history
Loading