Skip to content

Commit

Permalink
Updated Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesVanWaza committed Jul 19, 2024
1 parent 37fd878 commit 780db86
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 48 deletions.
28 changes: 28 additions & 0 deletions functions/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
env: {
es6: true,
node: true,
},
parserOptions: {
"ecmaVersion": 2018,
},
extends: [
"eslint:recommended",
"google",
],
rules: {
"no-restricted-globals": ["error", "name", "length"],
"prefer-arrow-callback": "error",
"quotes": ["error", "double", {"allowTemplateLiterals": true}],
},
overrides: [
{
files: ["**/*.spec.*"],
env: {
mocha: true,
},
rules: {},
},
],
globals: {},
};
89 changes: 44 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "algolia-instantsearch-demo",
"version": "2024.2.9",
"version": "2024.3.0",
"description": "Algolia Instantsearch Demo",
"main": "index.html, main.js",
"scripts": {
Expand All @@ -14,12 +14,12 @@
"algoliasearch": "^4.24.0",
"autoprefixer": "^10.4.19",
"bootstrap": "5.3.3",
"instantsearch.js": "^4.73.1"
"instantsearch.js": "^4.73.2"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@fortawesome/fontawesome-free": "^6.5.2",
"@fortawesome/fontawesome-free": "^6.6.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"favicons-webpack-plugin": "^6.0.1",
Expand Down

0 comments on commit 780db86

Please sign in to comment.