vite config : ignore /local and /public/** to improve perf
This commit is contained in:
parent
3c9eed7804
commit
c11a85e7f8
32 changed files with 1235 additions and 858 deletions
|
|
@ -2,8 +2,7 @@
|
|||
"name": "getkirby/kql",
|
||||
"description": "Kirby Query Language",
|
||||
"license": "MIT",
|
||||
"type": "kirby-plugin",
|
||||
"version": "2.1.0",
|
||||
"version": "1.2.0",
|
||||
"keywords": [
|
||||
"kirby",
|
||||
"cms",
|
||||
|
|
@ -12,62 +11,29 @@
|
|||
"query",
|
||||
"headless"
|
||||
],
|
||||
"homepage": "https://getkirby.com",
|
||||
"type": "kirby-plugin",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bastian Allgeier",
|
||||
"email": "bastian@getkirby.com"
|
||||
},
|
||||
{
|
||||
"name": "Nico Hoffmann",
|
||||
"email": "nico@getkirby.com"
|
||||
}
|
||||
],
|
||||
"homepage": "https://getkirby.com",
|
||||
"support": {
|
||||
"email": "support@getkirby.com",
|
||||
"issues": "https://github.com/getkirby/kql/issues",
|
||||
"forum": "https://forum.getkirby.com",
|
||||
"source": "https://github.com/getkirby/kql"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.0.0 <8.3.0",
|
||||
"getkirby/cms": ">=3.8.2",
|
||||
"getkirby/composer-installer": "^1.2.1"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"allow-plugins": {
|
||||
"getkirby/composer-installer": false
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Kirby\\": [
|
||||
"tests/"
|
||||
]
|
||||
"Kirby\\": "src/"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"getkirby/composer-installer": true
|
||||
},
|
||||
"optimize-autoloader": true
|
||||
},
|
||||
"extra": {
|
||||
"installer-name": "kql",
|
||||
"kirby-cms-path": false
|
||||
},
|
||||
"scripts": {
|
||||
"analyze": [
|
||||
"@analyze:composer",
|
||||
"@analyze:psalm",
|
||||
"@analyze:phpcpd",
|
||||
"@analyze:phpmd"
|
||||
],
|
||||
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
|
||||
"analyze:phpcpd": "phpcpd --fuzzy --exclude tests --exclude vendor .",
|
||||
"analyze:phpmd": "phpmd . ansi phpmd.xml.dist --exclude 'dependencies/*,tests/*,vendor/*'",
|
||||
"analyze:psalm": "psalm",
|
||||
"ci": [
|
||||
"@fix",
|
||||
"@analyze",
|
||||
"@test"
|
||||
],
|
||||
"fix": "php-cs-fixer fix",
|
||||
"test": "phpunit --stderr --coverage-html=tests/coverage"
|
||||
"fix": "php-cs-fixer fix"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue