SharePoint
Why bundling external frameworks in SharePoint Framework Client-Side Web Parts is a bad idea
JavaScript frameworks referenced in SharePoint Framework are bundled together with Web Parts by default. But is it really a good idea?
How to use SharePoint Framework's preconfiguredEntries
One of the key elements of the SharePoint Framework Web Part manifest is the preconfiguredEntries property. What is it exactly, and what can you do with it?
Extending SharePoint Framework build process with custom tasks
When building solutions using the SharePoint Framework you might need to execute additional tasks during the project build process. Here is how to do it.
deploy vs. dist vs. lib - On SharePoint Framework build folders
When building SharePoint Framework projects you might have noticed the deploy, dist and lib folders. So what are they and when should you use their contents?
How does SharePoint Framework know which Web Part to run
So you would want to build a SharePoint Framework solution with a couple of Web Parts. But then you wonder: how would SharePoint know which Web Part it should run when? With no explicit relationship between the code and the manifest, would you need a separate project for each Web Part instead?