You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Charles Lyding, Filipe Silva, Alan Agius, Alex Eagle, Teamop, Hans Larsen, George Kalpakas, Paul Gschwendtner, Robert Baker, Adrian Moos, Corinna Cohn, Benjamin Barbier
Hans Larsen, Charles Lyding, Alan Agius, Alex Eagle, Filipe Silva, Adrian Moos, Corinna Cohn, qiyi, ★ F A I S A L ★, Fredrik Lundin, Robert Baker, Mike Brocchi, vakrilov, Abraham Williams
Hans Larsen, Mike Brocchi, Alan Agius, Noel Mace, Yi Qi, Charles Lyding, Noël Macé, Alex Eagle, Filipe Silva, Qais Patankar, Lukáš Matta, Alexander Bobrov, Cédric Exbrayat, Daniel Imhoff, Sarun Intaralawan
Alan Agius, Mike Brocchi, Hans Larsen, Noel Mace, Charles Lyding, Yi Qi, Noël Macé, Qais Patankar, Lukáš Matta, Alexander Bobrov, Sarun Intaralawan, Filipe Silva, Alex Eagle
add all current TSLint default formatters to schema
revert to webpack 4.9.2
pass in ContextElementDependency to ngtools/webpack
update webpack types
use webpack 4.11.1
Allow less-loader to use webpack resolver
@angular-devkit/build-optimizer
Commit
Description
Notes
support object literal methods
@angular-devkit/build-webpack
Commit
Description
Notes
support minor versions of webpack 4.x
@angular-devkit/build_angular
Commit
Description
Notes
use webpack 4 hooks for karma plugin
@angular-devkit/core
Commit
Description
Notes
allow use of ResolverHost
propagate node host delete errors
ensure full path is renamed for memory host
detect ambiguous projects with path discover
remove circular dependencies
when two projects are the same, pick the first declared
@angular-devkit/schematics
Two notes about changes in Schematics in 0.7.0:
We refactored the Tree implementation with a new CordHost recorder. All the changes you make to the Tree is now recorded in a set of changes (Create, Delete, Rename and Overwrite) instead of a list of Actions. This means that branching and merging are now consistent with the expected behaviour and the MergeStrategy work as expected. However, because of the nature of the old implementation, to maintain backward compatibility we had to keep some old code around that is only used when using two versions of Schematics; this code will move away in 7 and will likely break some Schematics that relied on it. Overall this is a huge improvement in the stability, speed and code health and will make understanding and learning Schematics easier.
We now allow people to return a Rule which will be run as if it was chained. This was a long standing feature that people had to be able to read files before setting up which Rule to run; it’s now entirely possible and we started using it in our own schematics, making things easier to read and understand.