Skip to content

Commit

Permalink
Update eslint-config-standard requirement from ^13.0.0 to ^14.0.1 (#210)
Browse files Browse the repository at this point in the history
* Update eslint-config-standard requirement from ^13.0.0 to ^14.0.1

Updates the requirements on [eslint-config-standard](https://github.com/standard/eslint-config-standard) to permit the latest version.
- [Release notes](https://github.com/standard/eslint-config-standard/releases)
- [Changelog](https://github.com/standard/eslint-config-standard/blob/master/CHANGELOG.md)
- [Commits](standard/eslint-config-standard@v13.0.0...v14.0.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* chore: fix lint warnings
  • Loading branch information
dependabot-preview[bot] authored and malept committed Aug 26, 2019
1 parent cd7118a commit 4d6a3f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class DebianInstaller extends common.ElectronInstaller {
this.options.name = this.sanitizeName(this.options.name)

if (!this.options.description && !this.options.productDescription) {
throw new Error(`No Description or ProductDescription provided. Please set either a description in the app's package.json or provide it in the this.options.`)
throw new Error("No Description or ProductDescription provided. Please set either a description in the app's package.json or provide it in the this.options.")
}

if (this.options.description) {
Expand Down
2 changes: 1 addition & 1 deletion test/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ describe('module', function () {
}
})

it(`warns the user about umasks`, () => {
it('warns the user about umasks', () => {
const installerOptions = testInstallerOptions(outputDir, {
src: 'test/fixtures/app-with-asar/',
options: { arch: 'i386' }
Expand Down

0 comments on commit 4d6a3f4

Please sign in to comment.