Skip to content

Commit

Permalink
rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJaredWilcurt committed Apr 7, 2024
1 parent 942ef11 commit dd094ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module.exports = {
'newline-before-expect-assertion': 'error',
'test-names-avoid-should': 'error',
'jest/no-deprecated-functions': 'off',
'no-async-promise-executor': 'off',
'no-restricted-syntax': [
'error',
...baseRestrictedSyntax,
Expand Down
2 changes: 1 addition & 1 deletion index.js → library.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import fs from 'node:fs';
import https from 'node:https';
import path from 'node:path';
import { fileURLToPath } from 'node:url';

const __dirname = path.dirname(fileURLToPath(import.meta.url));

let originalManifestIndentation = 2;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"license": "MIT",
"description": "Updates Volta config in package.json so Node match's what your NW.js version uses",
"scripts": {
"lint": "eslint --rulesdir=./node_modules/eslint-config-tjw-jest/custom-eslint-rules --ext .js --config=.eslintrc.cjs .eslintrc.cjs",
"fix": "eslint --fix --rulesdir=./node_modules/eslint-config-tjw-jest/custom-eslint-rules --ext .js --config=.eslintrc.cjs .eslintrc.cjs"
"lint": "eslint --rulesdir=./node_modules/eslint-config-tjw-jest/custom-eslint-rules --ext .js --config=.eslintrc.cjs .eslintrc.cjs library.js",
"fix": "eslint --fix --rulesdir=./node_modules/eslint-config-tjw-jest/custom-eslint-rules --ext .js --config=.eslintrc.cjs .eslintrc.cjs library.js"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
Expand Down

0 comments on commit dd094ca

Please sign in to comment.