Changeset 13703
- Timestamp:
- 01/20/2024 11:01:36 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
Gruntfile.js (modified) (2 diffs)
-
package.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r13652 r13703 329 329 exec: { 330 330 cli: { 331 command: ' svn export --force https://github.com/buddypress/wp-cli-buddypress.git/tags/2.0.2cli',331 command: 'npm run download:cli', 332 332 cwd: BUILD_DIR, 333 333 stdout: false … … 338 338 }, 339 339 rest_api: { 340 command: ' svn export --force https://github.com/buddypress/BP-REST.git/trunk bp-rest',340 command: 'npm run download:rest', 341 341 cwd: BUILD_DIR, 342 342 stdout: false -
trunk/package.json
r13684 r13703 55 55 "test-php:group": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.xml --group $npm_confi_g'", 56 56 "test-php-multisite": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.multisite.xml'", 57 "test-php-multisite:group": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.multisite.xml --group $npm_confi_g'" 57 "test-php-multisite:group": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.multisite.xml --group $npm_confi_g'", 58 "download:cli": "curl -L -o 'cli-archive.zip' https://github.com/buddypress/wp-cli-buddypress/archive/2.0.2.zip && unzip -qq cli-archive.zip && mv wp-cli-buddypress-2.0.2 build/cli && rm cli-archive.zip", 59 "download:rest": "curl -L -o 'rest-archive.zip' https://github.com/buddypress/BP-REST/archive/master.zip && unzip -qq rest-archive.zip && mv BP-REST-master build/bp-rest && rm rest-archive.zip" 58 60 }, 59 61 "keywords": [
Note: See TracChangeset
for help on using the changeset viewer.