-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgraded node-dominos-pizza-api, which required nodejs upgrade. also …
…updated tooling
- Loading branch information
Showing
14 changed files
with
6,229 additions
and
4,558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
dist | ||
bower_components | ||
**/node_modules | ||
__snapshots__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"parser": "@babel/eslint-parser", | ||
parserOptions: { | ||
requireConfigFile: false, | ||
sourceType: "module", | ||
ecmaFeatures: { | ||
globalReturn: false, | ||
}, | ||
}, | ||
"extends": "eslint:recommended", | ||
"globals": {}, | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"plugins": [], | ||
"rules": { | ||
"strict": 0, | ||
"curly": [2, "multi-line", "consistent"], | ||
"no-multi-assign": 2, | ||
"no-debugger": 1, // disallow use of debugger | ||
"no-unused-vars": [1, { "args": "none", "varsIgnorePattern": "^(Promise|_)$" }], | ||
"no-control-regex": 0, | ||
"no-use-before-define": ["error", {"functions": false, classes: false, "variables": true}], | ||
"prefer-promise-reject-errors": 2, | ||
"no-undef": 2, | ||
"no-mixed-spaces-and-tabs": 0, // disallow mixed spaces and tabs for indentation | ||
"no-console": 0, // disallow use of console (off by default in the node environment) | ||
"comma-dangle": 0, | ||
"object-shorthand": [1, "properties"], | ||
"prefer-template": 1, | ||
"array-callback-return": 2, // https://eslint.org/docs/2.0.0/rules/array-callback-return | ||
"prefer-const": 2, | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v9.1.0 | ||
v18.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.git | ||
dist | ||
data.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"bracketSpacing": false, | ||
"jsxBracketSameLine": false, | ||
"semi": true, | ||
"requirePragma": false, | ||
"arrowParens": "always", | ||
"overrides": [ | ||
{ | ||
"files": ["*.js", "*.jsx", "*.svg"], | ||
"options": { | ||
"parser": "babel" | ||
} | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:9.1.0-wheezy | ||
FROM node:18.0.0-bullseye | ||
|
||
EXPOSE 3003 | ||
WORKDIR /opt/ryankoval.pizza | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.