Skip to content

Commit

Permalink
build: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed Apr 25, 2024
1 parent 16bba3d commit 778ff4b
Show file tree
Hide file tree
Showing 7 changed files with 9,188 additions and 5,641 deletions.
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"SF_API_VERSION": {
"description": "Salesforce API version",
"value": "55.0",
"value": "60.0",
"required": true
},
"SF_USERNAME": {
Expand Down
14,777 changes: 9,161 additions & 5,616 deletions package-lock.json

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
{
"name": "quiz-player-app",
"description": "Multiplayer quiz app built on Salesforce technology (player app)",
"version": "3.0.1",
"version": "3.0.2",
"private": true,
"author": "pozil",
"bugs": "https://github.com/developerforce/quiz-player-app/issues",
"dependencies": {
"@babel/core": "^7.18.2",
"dotenv": "^16.0.1",
"jsforce": "^1.11.0",
"lwc": "^2.14.1",
"lwr": "^0.7.6",
"@babel/core": "^7.24.4",
"dotenv": "^16.4.5",
"jsforce": "^1.11.1",
"lwc": "^6.5.3",
"lwr": "^0.12.2",
"normalize.css": "^8.0.1",
"ws": "^8.6.0"
"ws": "^8.16.0"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.2.1",
"@lwc/jest-preset": "^11.4.0",
"@salesforce/eslint-config-lwc": "^3.3.0",
"@lwc/eslint-plugin-lwc": "^1.8.0",
"@lwc/jest-preset": "^16.0.0",
"@salesforce/eslint-config-lwc": "^3.5.3",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2"
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"engines": {
"node": "14.18.1"
"node": "^20"
},
"homepage": "https://github.com/developerforce/quiz-player-app",
"keywords": [
Expand All @@ -55,6 +55,6 @@
"precommit": "lint-staged"
},
"volta": {
"node": "14.18.1"
"node": "20.12.2"
}
}
2 changes: 1 addition & 1 deletion src/client/layouts/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
Expand Down
2 changes: 1 addition & 1 deletion src/client/modules/ui/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default class App extends LightningElement {
pingTimeout;
ws;

PLAYER_APP_VERSION = '3.0.1';
PLAYER_APP_VERSION = '3.0.2';

@wire(getCurrentSession)
getCurrentSession({ error, data }) {
Expand Down
4 changes: 3 additions & 1 deletion src/client/modules/ui/input/input.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ input {
border: 1px solid #dddbda;
border-radius: 0.25rem;
width: 100%;
transition: border 0.1s linear, background-color 0.1s linear;
transition:
border 0.1s linear,
background-color 0.1s linear;
display: inline-block;
box-sizing: border-box;
padding: 0 1rem 0 0.75rem;
Expand Down
4 changes: 2 additions & 2 deletions src/client/modules/ui/playerStats/playerStats.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<span class="large">{playerStats.score}</span>&nbsp;points.
</p>
<p>
<span class="large"></span>&nbsp;{playerStats.correctCount}
correct
<span class="large"></span
>&nbsp;{playerStats.correctCount} correct
</p>
<p>
<span class="large"></span>&nbsp;{playerStats.wrongCount}
Expand Down

0 comments on commit 778ff4b

Please sign in to comment.