give
Last commit date
assets
1 year ago
blocks
7 months ago
build
1 week ago
includes
2 days ago
languages
2 days ago
sample-data
8 months ago
src
2 days ago
templates
2 days ago
vendor
2 days ago
.puprc
2 weeks ago
changelog.txt
2 days ago
give.php
2 days ago
license.txt
6 years ago
readme.txt
2 days ago
uninstall.php
2 years ago
.puprc
47 lines
| 1 | { |
| 2 | "repo": "impress-org/give", |
| 3 | "zip_name": "give", |
| 4 | "build": [ |
| 5 | "composer install --no-dev --prefer-dist --no-progress --optimize-autoloader", |
| 6 | "composer run copy-fonts", |
| 7 | "npm ci --prefer-offline --no-audit --no-fund", |
| 8 | "npm run build" |
| 9 | ], |
| 10 | "build_dev": [ |
| 11 | "composer install --prefer-dist --no-progress", |
| 12 | "composer run copy-fonts", |
| 13 | "npm ci --prefer-offline --no-audit --no-fund", |
| 14 | "npm run dev" |
| 15 | ], |
| 16 | "zip_use_default_ignore": true, |
| 17 | "checks": { |
| 18 | "tbd": { |
| 19 | "dirs": [ |
| 20 | "src", |
| 21 | "includes", |
| 22 | "blocks", |
| 23 | "templates", |
| 24 | "assets/src", |
| 25 | "tests" |
| 26 | ], |
| 27 | "skip_directories": "bin|build|vendor|node_modules|.git|.github|bats" |
| 28 | } |
| 29 | }, |
| 30 | "paths": { |
| 31 | "versions": [ |
| 32 | { |
| 33 | "file": "give.php", |
| 34 | "regex": "(define\\('GIVE_VERSION', ')([^']+)" |
| 35 | }, |
| 36 | { |
| 37 | "file": "give.php", |
| 38 | "regex": "(Version: )(.+)" |
| 39 | }, |
| 40 | { |
| 41 | "file": "readme.txt", |
| 42 | "regex": "(Stable tag: )(.+)" |
| 43 | } |
| 44 | ] |
| 45 | } |
| 46 | } |
| 47 |