chore: upgrade package.json, composer.json

Some fixes in Makefile and lint in templates
pull/322/head
Sebastien Marinier 2025-05-15 15:03:51 +02:00
parent fdd91dfab2
commit 2b324cc476
8 changed files with 2671 additions and 1547 deletions

View File

@ -41,14 +41,14 @@ lint: js-init
yarn run lint yarn run lint
lint-fix: js-init lint-fix: js-init
yarn run lint:fix yarn run fix
# Style linting # Style linting
stylelint: js-init stylelint: js-init
yarn run stylelint yarn run lint:style
stylelint-fix: js-init stylelint-fix: js-init
yarn run stylelint:fix yarn run lint:fix:style
phplint: phplint:
./vendor/bin/php-cs-fixer fix --dry-run ./vendor/bin/php-cs-fixer fix --dry-run

View File

@ -14,10 +14,10 @@
"require-dev": { "require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3", "phpunit/phpunit": "^8.5 || ^9.3",
"friendsofphp/php-cs-fixer": "^3", "friendsofphp/php-cs-fixer": "^3",
"nextcloud/coding-standard": "^1.0.0", "nextcloud/coding-standard": "^1.1.0",
"phpstan/phpstan": "^0.12.29", "phpstan/phpstan": "^0.12.29",
"nextcloud/ocp": "^25.0 || ^26.0 || ^27.0", "nextcloud/ocp": "^26.0 || ^27.0 || ^28.0 || ^29.0 || ^30.0 || ^31.0",
"vimeo/psalm": "^5.0", "vimeo/psalm": "^6.10",
"psr/container": "^1.1.2 || ^2.0.2" "psr/container": "^1.1.2 || ^2.0.2"
}, },
"config": { "config": {

3342
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -45,7 +45,7 @@
"colors": "^1.4.0", "colors": "^1.4.0",
"dotenv": "^16.0.0", "dotenv": "^16.0.0",
"execa": "^6.1.0", "execa": "^6.1.0",
"libxmljs": "^0.19.8", "libxmljs": "^1.0.11",
"qrcode.react": "^2.0.0", "qrcode.react": "^2.0.0",
"react-copy-to-clipboard": "^5.0.2", "react-copy-to-clipboard": "^5.0.2",
"simple-git": "^3.16.0" "simple-git": "^3.16.0"
@ -65,6 +65,7 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.9.0", "@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.27.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0", "@babel/preset-env": "^7.9.0",
"@nextcloud/browserslist-config": "^2.2.0", "@nextcloud/browserslist-config": "^2.2.0",
@ -79,12 +80,11 @@
"@types/webpack-env": "^1.15.2", "@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^5.15.0", "@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0", "@typescript-eslint/parser": "^5.15.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0", "babel-loader": "^8.1.0",
"css-loader": "^6.7.1", "css-loader": "^6.7.1",
"dotenv-cli": "^5.0.0", "dotenv-cli": "^5.0.0",
"eslint": "^8.11.0", "eslint": "^8.11.0",
"eslint-config-standard": "^16.0.3", "eslint-config-standard": "^17.0",
"eslint-import-resolver-webpack": "^0.13.2", "eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.20.2", "eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0", "eslint-plugin-node": "^11.1.0",
@ -96,7 +96,6 @@
"husky": "^4.2.5", "husky": "^4.2.5",
"inquirer": "^8.2.1", "inquirer": "^8.2.1",
"install": "^0.13.0", "install": "^0.13.0",
"node-sass": "^7.0.0",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",

View File

@ -1,8 +1,8 @@
<?php <?php
/** @var $_ array */ /** @var $_ array */
/** @var $l \OCP\IL10N */ /** @var $l \OCP\IL10N */
style('core', 'guest'); style('core', 'guest');
?> ?>
<div class="update bbb guest-box"> <div class="update bbb guest-box">
<h2><?php p($_['room']) ?></h2> <h2><?php p($_['room']) ?></h2>

View File

@ -1,9 +1,9 @@
<?php <?php
/** @var $_ array */ /** @var $_ array */
/** @var $l \OCP\IL10N */ /** @var $l \OCP\IL10N */
style('core', 'guest'); style('core', 'guest');
script('bbb', 'join'); script('bbb', 'join');
?> ?>
<form method="get" action="?"> <form method="get" action="?">
<fieldset class="warning bbb"> <fieldset class="warning bbb">
<h2><?php p($_['room']) ?></h2> <h2><?php p($_['room']) ?></h2>

View File

@ -1,9 +1,9 @@
<?php <?php
/** @var $_ array */ /** @var $_ array */
/** @var $l \OCP\IL10N */ /** @var $l \OCP\IL10N */
style('core', 'guest'); style('core', 'guest');
script('bbb', 'waiting'); script('bbb', 'waiting');
?> ?>
<div class="update bbb"> <div class="update bbb">
<h2><?php p($_['room']); ?></h2> <h2><?php p($_['room']); ?></h2>

829
yarn.lock

File diff suppressed because it is too large Load Diff