Andrew Kushnir
34393874e6
refactor(upgrade): convert scripts within packages/upgrade to relative imports ( #60238 )
...
This commit updates scripts within `packages/upgrade` to relative imports as a prep work to the upcoming infra updates.
PR Close #60238
2025-03-26 20:35:11 -07:00
Matthieu Riegler
09df589e31
refactor(core): Migrate all packages with the explicit-standalone-flag schematic. ( #58160 )
...
All components, directives and pipes will now use standalone as default.
Non-standalone decorators have now `standalone: false`.
PR Close #58160
2024-10-14 14:58:57 +00:00
Joey Perrott
9dbe6fc18b
refactor: update license text to point to angular.dev ( #57901 )
...
Update license text to point to angular.dev instead of angular.io
PR Close #57901
2024-09-24 15:33:00 +02:00
Joey Perrott
c4b880a025
refactor: migrate docs, examples, private, service worker and upgrade to prettier formatting ( #54163 )
...
Migrate formatting to prettier for docs, examples, private, service worker and upgrade from clang-format
PR Close #54163
2024-01-30 20:08:40 +00:00
Matthieu Riegler
223912028e
refactor(upgrade): code cleaning on tests ( #48715 )
...
This commit removes the null assertions linked to #24571
PR Close #48715
2023-01-25 18:32:05 +00:00
Kristiyan Kostadinov
359103274b
test: clean up more entryComponents usages ( #44561 )
...
Cleans up some more tests that were using `entryComponents`.
PR Close #44561
2022-01-06 18:36:22 +00:00
JiaLiPassion
8fbf40bf40
feat(core): update reference and doc to change async to waitAsync. ( #37583 )
...
The last commit change `async` to `waitForAsync`.
This commit update all usages in the code and also update aio doc.
PR Close #37583
2020-08-03 12:54:13 -07:00
Joey Perrott
d1ea1f4c7f
build: update license headers to reference Google LLC ( #37205 )
...
Update the license headers throughout the repository to reference Google LLC
rather than Google Inc, for the required license headers.
PR Close #37205
2020-05-26 14:26:58 -04:00
Joey Perrott
698b0288be
build: reformat repo to new clang@1.4.0 ( #36613 )
...
PR Close #36613
2020-04-14 12:08:36 -07:00
Evan Martin
becd62d4a1
fix(upgrade): remove unused version export ( #33180 )
...
In some module systems (Closure), it's illegal to mutate an export.
This mutated export isn't used anyway, so we can just remove it.
PR Close #33180
2019-10-16 16:39:11 -04:00
George Kalpakas
abcb2cf9a0
refactor(upgrade): rename module constant to avoid webpack bug ( #30058 )
...
When targeting ES2015 (as is the default in cli@8), `const` is not
downleveled to `var` and thus declaring `const module` throws an error
due to webpack wrapping the code in a function call with a `module`
argument (even when compiling for the `web` environment).
Related: webpack/webpack#7369
Fixes #30050
PR Close #30058
2019-04-24 17:03:51 -07:00
Pete Bacon Darwin
9f54d76ef5
refactor(upgrade): use Bazel packages to avoid symlinks in the source ( #29466 )
...
Previously we had to share code between upgrade/dynamic and upgrade/static
by symlinking the `src` folder, which allowed both packages to access
the upgrade/common files.
These symlinks are always problematic on Windows, where we had to run
a script to re-link them, and restore them.
This change uses Bazel packages to share the `upgrade/common` code,
which avoids the need for symlinking the `src` folder.
Also, the Windows specific scripts that fixup the symlinks have also
been removed as there is no more need for them.
PR Close #29466
2019-04-02 10:38:01 -07:00