Changes between Initial Version and Version 1 of Ticket #47749, comment 10
- Timestamp:
- 01/12/2023 03:31:34 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #47749, comment 10
initial v1 2 2 3 3 === Steps to Test `clean` Task 4 1. Build the `wordpress-develop` dev environment with: `npm run build:dev`. **This generates compiled files in the `src/` directory.**4 1. Build the `wordpress-develop` dev environment with: `npm run build:dev`. This generates compiled files in the `src/` directory. 5 5 2. Confirm compiled files exist by listing files not under source control: `git ls-files -o src/wp-admin` and `git ls-files -o src/wp-includes`. Numerous files should be returned. 6 6 3. Run `npm run grunt clean`. … … 8 8 9 9 === Steps to Test `build` Task 10 1. Build the `wordpress-develop` distribution with: `npm run build`. **This generates files in the `build/` directory.**10 1. Build the `wordpress-develop` distribution with: `npm run build`. This generates compiled files in the `src/` directory and copies them to `build/`. 11 11 2. Confirm compiled files were cleaned from the `src/` directory after build by listing files not under source control: `git ls-files -o src/wp-admin` and `git ls-files -o src/wp-includes`. There should be no results. 12 12