This repository was archived by the owner on May 22, 2025. It is now read-only.
File tree 4 files changed +14
-6
lines changed
4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change
1
+ Language : JavaScript
2
+ BasedOnStyle : Google
3
+ ColumnLimit : 100
Original file line number Diff line number Diff line change @@ -140,7 +140,9 @@ any of the below commands to make sure you are using the right version.
140
140
- ` ibazel test test:unit_test ` executes the unit tests in watch mode (use ` bazel test test:unit_test ` for a single run),
141
141
- ` bazel test test:e2e_test ` executes the e2e tests,
142
142
- ` bazel test test:golden_test ` executes the golden tests,
143
- - ` yarn test ` runs unit tests and e2e tests.
143
+ - ` node check_format.js ` checks the source code formatting using
144
+ ` clang-format ` ,
145
+ - ` yarn test ` runs unit tests, e2e tests and checks the source code formatting.
144
146
145
147
### Debugging
146
148
@@ -210,5 +212,8 @@ $ git push origin v0.32.0 # but use correct version
210
212
Once the versioned tag is pushed to Github the release (as found on
211
213
https://github.com/angular/tsickle/releases ) will be implicitly created.
212
214
213
- Run ` bazel run :npm_package.publish ` from the master branch
214
- (you must be logged into the ` angular ` shared npm account).
215
+ From the master branch run:
216
+
217
+ ```
218
+ bazel run :npm_package.publish -- --registry https://wombat-dressing-room.appspot.com
219
+ ```
Original file line number Diff line number Diff line change 1
- // test_files/cast_extends/cast_extends.ts(16,1): warning TS0: unhandled type flags: Intersection
2
- // test_files/cast_extends/cast_extends.ts(22,10): warning TS0: unhandled type flags: Intersection
1
+ // test_files/cast_extends/cast_extends.ts(16,1): warning TS0: unhandled type flags: IncludesNonWideningType
2
+ // test_files/cast_extends/cast_extends.ts(22,10): warning TS0: unhandled type flags: IncludesNonWideningType
3
3
/**
4
4
*
5
5
* @fileoverview Reproduces an issue where tsickle would emit a cast for the "extends" claus, and
Original file line number Diff line number Diff line change 1
- test_files/mixin/mixin.d.ts(1,1): warning TS0: unhandled type flags: Intersection
1
+ test_files/mixin/mixin.d.ts(1,1): warning TS0: unhandled type flags: IncludesNonWideningType
2
2
test_files/mixin/mixin.d.ts(12,31): warning TS0: dropped extends of non-symbol supertype: MyMixin(HTMLElement)
You can’t perform that action at this time.
0 commit comments