Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
recca0120 committed Jun 21, 2024
1 parent fc03b9d commit 4644af5
Show file tree
Hide file tree
Showing 6 changed files with 1,723 additions and 1,473 deletions.
3,137 changes: 1,693 additions & 1,444 deletions package-lock.json

Large diffs are not rendered by default.

37 changes: 19 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,48 +17,49 @@
},
"dependencies": {
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.8",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.4",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-vue": "^0.1.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.10.1",
"@codemirror/language": "^6.10.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@replit/codemirror-vim": "^6.2.0",
"axios": "^1.6.7",
"cli-spinners": "^2.9.2",
"@replit/codemirror-vim": "^6.2.1",
"axios": "^1.7.2",
"cli-spinners": "^3.0.0",
"cm6-theme-material-dark": "^0.2.0",
"codemirror": "^6.0.1",
"jquery-mousewheel": "^3.1.13",
"jquery.terminal": "^2.39.0"
"jquery.terminal": "^2.42.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@types/core-js": "^2.5.8",
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.29",
"@types/jquery": "^3.5.30",
"@types/jquery-mousewheel": "^3.1.12",
"@types/node": "^20.11.26",
"@types/node": "^20.14.7",
"browser-sync": "^2.27.11",
"browser-sync-webpack-plugin": "^2.3.0",
"core-js": "^3.36.0",
"eslint": "^8.57.0",
"core-js": "^3.37.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"json-loader": "^0.5.7",
"laravel-mix": "^6.0.49",
"lodash": "^4.17.21",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"ts-jest": "^29.1.2",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.2"
"typescript": "^5.5.2"
},
"jest": {
"testEnvironment": "node",
Expand Down
8 changes: 4 additions & 4 deletions public/css/terminal.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/terminal.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/js/terminal.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ /
* / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__
* \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/
* \/ /____/ version 2.39.0
* \/ /____/ version 2.42.0
*
* This file is part of jQuery Terminal. https://terminal.jcubic.pl
*
Expand Down Expand Up @@ -89,5 +89,5 @@
*
* broken image by Sophia Bai from the Noun Project (CC-BY)
*
* Date: Tue, 13 Feb 2024 21:18:12 +0000
* Date: Sun, 19 May 2024 09:25:25 +0000
*/
8 changes: 4 additions & 4 deletions resources/ts/spinners.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import * as cliSpinners from 'cli-spinners';
import cliSpinners, { Spinner as CliSpinner, SpinnerName } from 'cli-spinners';

export class Spinner {
private spinner: cliSpinners.Spinner = cliSpinners.dots;
private spinner: CliSpinner = cliSpinners.dots;
private frameIndex = 0;
private interval: any = null;

constructor(style: cliSpinners.SpinnerName = 'dots') {
constructor(style: SpinnerName = 'dots') {
this.setStyle(style);
}

setStyle(style: cliSpinners.SpinnerName): Spinner {
setStyle(style: SpinnerName): Spinner {
this.spinner = cliSpinners[style];

return this;
Expand Down

0 comments on commit 4644af5

Please sign in to comment.