From 61c7ff1160d63da673d70012bc745cbf54336255 Mon Sep 17 00:00:00 2001 From: George Xu Date: Tue, 18 Oct 2022 11:44:48 -0700 Subject: [PATCH] sentence case for headers --- blog/forge-v6-release.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/blog/forge-v6-release.md b/blog/forge-v6-release.md index ad0f881..e952118 100644 --- a/blog/forge-v6-release.md +++ b/blog/forge-v6-release.md @@ -16,13 +16,13 @@ slug: forge-v6-release-blog The Electron Forge Team is excited to announce that Forge v6 is now available! This stable release contains many significant new features and improvements. Highlights of this release include the addition of our Webpack plugin as well as the introduction of the Forge Core and CLI APIs. -## What Does a Stable Release Mean? +## What does a stable release mean? During our time in a beta release state, our team has been busy refactoring Forge’s code, improving its architecture, creating new features as well as ironing out bugs and issues. A stable release means that we are done making major breaking changes, and that beta changes have been tested thoroughly both internally and through the community. -## Why Switch to Forge From an Existing Pipeline? +## Why switch to Forge from an existing pipeline? If your app already uses an existing build tooling solution that provides packaging and publishing capabilities, the benefits associated with adopting Electron Forge can still outweigh the initial switching cost. @@ -30,7 +30,7 @@ Electron Forge will receive features from the latest Electron tooling updates as In addition, Forge was built with the intention of supporting custom plugins, makers and publishers. Forge's extensible API design means that you can write your own additional build logic for any advanced use cases that you may require. For more details, see the [Extending Electron Forge] section of the docs. -## Introducing the Webpack Plugin +## Introducing the webpack plugin This release adds webpack support to your build pipeline. Webpack is a module bundler: it takes your codebase’s dependencies and modules, creates a dependency graph, and bundles them (stitching them together into a single file) into a form that your index.html can read. Bundling increases performance by reducing the number of asset calls required. @@ -42,13 +42,13 @@ The addition of webpack support brings several webpack features to your Forge ap - Adding content security policies - Native module support -## The Forge API Has Moved +## The Forge API has moved If you aren't already on the beta version of Forge, since the previous stable release the Forge v5 API has been refactored into its own separate node module. The new refactored Forge [Core API] exposes the v5 Forge API methods as well as a number of utility functions to Node, allowing you call them from within your own code. This release also adds access to the Core API from your command line interface in the form of another [CLI API]. At a high level, this is a wrapper for the Forge Core API that is accessible from the terminal. -## Breaking Changes Since Beta: +## Breaking changes since beta: _A complete list of changes and commits can be found [here](https://github.com/electron-userland/electron-forge/blob/main/CHANGELOG.md)_. @@ -58,7 +58,7 @@ _A complete list of changes and commits can be found [here](https://github.com/e - renamed `electronRebuildConfig` to `rebuildConfig` ([placeholdercommitmsg](https://github.com/electron-userland/electron-forge/pull/2963)) - renamed `identity-validation` to`identityValidation` ([#2959](https://github.com/electron-userland/electron-forge/commit/dba9359026b6b72479bff8133ec0c2c2e05d5595)) -## A Call to Action: +## A call to action: Tell us what you need! The Electron Forge Team is always looking to build the project to better suit its users. You can help us improve Electron Forge by submitting feature requests, posting issues, or just letting us know your feedback!