-
Notifications
You must be signed in to change notification settings - Fork 109
Comparing changes
Open a pull request
base repository: angular/tsickle
base: v0.38.1
head repository: angular/tsickle
compare: v0.39.0
- 19 commits
- 226 files changed
- 6 contributors
Commits on Mar 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c3c16d1 - Browse repository at this point
Copy the full SHA c3c16d1View commit details
Commits on Mar 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 60e5460 - Browse repository at this point
Copy the full SHA 60e5460View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0019925 - Browse repository at this point
Copy the full SHA 0019925View commit details
Commits on Mar 17, 2020
-
Bump minimist from 1.2.0 to 1.2.2 in /demo
Bumps [minimist](https://github.com/substack/minimist) from 1.2.0 to 1.2.2. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.0...1.2.2) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 8a1b405 - Browse repository at this point
Copy the full SHA 8a1b405View commit details
Commits on Mar 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for dee3661 - Browse repository at this point
Copy the full SHA dee3661View commit details
Commits on Apr 6, 2020
-
Bump minimist from 1.2.2 to 1.2.3 in /demo
Bumps [minimist](https://github.com/substack/minimist) from 1.2.2 to 1.2.3. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.2...1.2.3) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 1751f0b - Browse repository at this point
Copy the full SHA 1751f0bView commit details
Commits on Apr 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 03e4676 - Browse repository at this point
Copy the full SHA 03e4676View commit details
Commits on May 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 3f1dd00 - Browse repository at this point
Copy the full SHA 3f1dd00View commit details
Commits on May 20, 2020
-
move private field test to its own directory
PiperOrigin-RevId: 312379048
Configuration menu - View commit details
-
Copy full SHA for 9007ca4 - Browse repository at this point
Copy the full SHA 9007ca4View commit details
Commits on May 21, 2020
-
clang-format after last change
I have fixed things so that future changes will be automatically clang-formatted. PiperOrigin-RevId: 312701618
Configuration menu - View commit details
-
Copy full SHA for 24f604f - Browse repository at this point
Copy the full SHA 24f604fView commit details
Commits on May 29, 2020
-
Suppress "missingRequire" diagnostics in "closure" output as types re…
…ferences are propagated between files even when they are not directly imported. While these are violations of the "missing require" rules hey are believed to be safe. PiperOrigin-RevId: 313669021
Configuration menu - View commit details
-
Copy full SHA for ef4147e - Browse repository at this point
Copy the full SHA ef4147eView commit details -
don't dealias types in heritage clauses
If you have ``` class Foo implements Bar ``` where `Bar` is some sort of alias, previously we would resolve Bar to the underlying alias and emit that name instead in the `@implements` bit. This change makes us instead use the original Bar. You can see in the two affected tests that we have tests for the ways in which you might expect this to fail -- for example, the test shows that JSCompiler handles it properly when you implements a type alias. PiperOrigin-RevId: 313779842
Configuration menu - View commit details
-
Copy full SHA for fae06be - Browse repository at this point
Copy the full SHA fae06beView commit details
Commits on Jun 12, 2020
-
reformat recently-touched code
I have recently fixed things so we run clang-format within Google, so hopefully subsequent changes will preserve the formatting, which otherwise breaks the CI on Github. PiperOrigin-RevId: 316054434
Configuration menu - View commit details
-
Copy full SHA for f8f5eb0 - Browse repository at this point
Copy the full SHA f8f5eb0View commit details -
drop the
module = module;
emit by tsickleThis was a workaround for JSCompiler warning that module is an unused variable, but we fixed this more appropriately by suppressing that warning. PiperOrigin-RevId: 316150037
Configuration menu - View commit details
-
Copy full SHA for 8335738 - Browse repository at this point
Copy the full SHA 8335738View commit details
Commits on Jun 23, 2020
-
simplify emit of side effect imports
Imagine code like ``` import 'foo'; // #1 import * as foo from 'foo'; // #2 ``` tsickle currently produces something like: ``` var tsickle_module_1_ = goog.require('foo'); // #1 var foo_1 = tsickle_module_1_; // #2 ``` Using this alias ends up confusing some JSCompiler optimization (see bug). We can avoid it by producing the simpler emit done in this change, which looks instead like: ``` goog.require('foo'); // #1 var foo_1 = goog.require('foo'); // #2 ``` PiperOrigin-RevId: 317957124
Configuration menu - View commit details
-
Copy full SHA for 7950404 - Browse repository at this point
Copy the full SHA 7950404View commit details
Commits on Jun 26, 2020
-
PiperOrigin-RevId: 318546058
Configuration menu - View commit details
-
Copy full SHA for c5a8567 - Browse repository at this point
Copy the full SHA c5a8567View commit details -
Disables formatting checks (#1158)
We don't need to check this anymore now that we push code out using Copybara.
Configuration menu - View commit details
-
Copy full SHA for 679cbee - Browse repository at this point
Copy the full SHA 679cbeeView commit details
Commits on Jun 29, 2020
-
Update TypeScript dependency to 3.9 (#1157)
* Update TypeScript dependency to 3.9 Fixes #1155 * Update test goldens
Configuration menu - View commit details
-
Copy full SHA for d4428e5 - Browse repository at this point
Copy the full SHA d4428e5View commit details
Commits on Jun 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for afc41a2 - Browse repository at this point
Copy the full SHA afc41a2View commit details
There are no files selected for viewing
This file was deleted.
This file was deleted.