diff --git a/packages/api/cli/src/electron-forge-init.ts b/packages/api/cli/src/electron-forge-init.ts index 07e94954d4..56312230e2 100644 --- a/packages/api/cli/src/electron-forge-init.ts +++ b/packages/api/cli/src/electron-forge-init.ts @@ -12,7 +12,7 @@ import workingDir from './util/working-dir'; program .version((await fs.readJson(path.resolve(__dirname, '../package.json'))).version) .arguments('[name]') - .option('-t, --template [name]', 'Name of the forge template to use') + .option('-t, --template [name]', 'Name of the Forge template to use') .option('-c, --copy-ci-files', 'Whether to copy the templated CI files (defaults to false)', false) .action((name) => { dir = workingDir(dir, name, false); }) .parse(process.argv); diff --git a/packages/plugin/webpack/src/WebpackPlugin.ts b/packages/plugin/webpack/src/WebpackPlugin.ts index 7a4ef917c0..ce03bfc38f 100644 --- a/packages/plugin/webpack/src/WebpackPlugin.ts +++ b/packages/plugin/webpack/src/WebpackPlugin.ts @@ -147,7 +147,7 @@ export default class WebpackPlugin extends PluginBase { forgeConfig.packagerConfig = {}; } if (forgeConfig.packagerConfig.ignore) { - console.error(`You have set packagerConfig.ignore, the electron forge webpack plugin normally sets this automatically. + console.error(`You have set packagerConfig.ignore, the Electron Forge webpack plugin normally sets this automatically. Your packaged app may be larger than expected if you dont ignore everything other than the '.webpack' folder`.red); return forgeConfig; diff --git a/packages/publisher/bitbucket/src/PublisherBitbucket.ts b/packages/publisher/bitbucket/src/PublisherBitbucket.ts index a3ea0959a0..415f4ebfef 100644 --- a/packages/publisher/bitbucket/src/PublisherBitbucket.ts +++ b/packages/publisher/bitbucket/src/PublisherBitbucket.ts @@ -22,11 +22,11 @@ export default class PublisherBitbucket extends PublisherBase { const { config } = this; if (!(config.baseUrl && config.username && config.password)) { - throw new Error('In order to publish to ERS you must set the "electronReleaseServer.baseUrl", "electronReleaseServer.username" and "electronReleaseServer.password" properties in your forge config. See the docs for more info'); + throw new Error('In order to publish to ERS you must set the "electronReleaseServer.baseUrl", "electronReleaseServer.username" and "electronReleaseServer.password" properties in your Forge config. See the docs for more info'); } d('attempting to authenticate to ERS'); diff --git a/packages/publisher/github/src/PublisherGithub.ts b/packages/publisher/github/src/PublisherGithub.ts index 125eaba241..b4632d4164 100644 --- a/packages/publisher/github/src/PublisherGithub.ts +++ b/packages/publisher/github/src/PublisherGithub.ts @@ -40,7 +40,7 @@ export default class PublisherGithub extends PublisherBase { }); if (!s3Client.config.credentials || !config.bucket) { - throw new Error('In order to publish to s3 you must set the "s3.accessKeyId", "process.env.ELECTRON_FORGE_S3_SECRET_ACCESS_KEY" and "s3.bucket" properties in your forge config. See the docs for more info'); + throw new Error('In order to publish to s3 you must set the "s3.accessKeyId", "process.env.ELECTRON_FORGE_S3_SECRET_ACCESS_KEY" and "s3.bucket" properties in your Forge config. See the docs for more info'); } d('creating s3 client with options:', config); diff --git a/packages/template/webpack/src/WebpackTemplate.ts b/packages/template/webpack/src/WebpackTemplate.ts index ad77c8471f..99de31763f 100644 --- a/packages/template/webpack/src/WebpackTemplate.ts +++ b/packages/template/webpack/src/WebpackTemplate.ts @@ -17,7 +17,7 @@ class WebpackTemplate implements ForgeTemplate { ]; public initializeTemplate = async (directory: string) => { - await asyncOra('Setting up forge configuration', async () => { + await asyncOra('Setting up Forge configuration', async () => { const pjPath = path.resolve(directory, 'package.json'); const currentPJ = await fs.readJson(pjPath); currentPJ.main = '.webpack/main'; diff --git a/packages/utils/async-ora/src/ora-handler.ts b/packages/utils/async-ora/src/ora-handler.ts index 94637ab847..8f1e0ed96e 100644 --- a/packages/utils/async-ora/src/ora-handler.ts +++ b/packages/utils/async-ora/src/ora-handler.ts @@ -43,7 +43,7 @@ const asyncOra: AsyncOraMethod = (initialOraValue, asyncFn, processExitFn = proc console.error(colors.red(err.message)); console.error(colors.red(err.stack)); } else { - console.error('\nElectron forge was terminated:'.red); + console.error('\nElectron Forge was terminated:'.red); console.error(colors.red(typeof err === 'string' ? err : JSON.stringify(err))); } processExitFn(1); diff --git a/packages/utils/types/package.json b/packages/utils/types/package.json index 342dd41428..371ea702c1 100644 --- a/packages/utils/types/package.json +++ b/packages/utils/types/package.json @@ -1,7 +1,7 @@ { "name": "@electron-forge/shared-types", "version": "6.0.0-beta.41", - "description": "Shared types across forge", + "description": "Shared types across Electron Forge", "repository": "https://github.com/electron-userland/electron-forge", "author": "Samuel Attard", "license": "MIT",