Make WordPress Core


Ignore:
Timestamp:
02/08/2021 08:52:53 PM (4 years ago)
Author:
desrosj
Message:

Build/Test Tools: Backport the local Docker environment to the 4.3 branch.

This commit introduces the Docker-based local WordPress development environment to the 4.3 branch.

Merges [44176,45445,45745,45762,45783-45784,45800,45819,45885,46320,46999,47225,47912,48121,49267,49335,49358,49360,49362] to the 4.3 branch.
See #48301, #47767.

Location:
branches/4.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.3

  • branches/4.3/package.json

    r50212 r50245  
    2323    "devDependencies": {
    2424        "autoprefixer": "^9.8.6",
     25        "dotenv": "^8.2.0",
     26        "dotenv-expand": "^5.1.0",
    2527        "grunt": "~1.3.0",
    2628        "grunt-browserify": "~5.3.0",
     
    4345        "grunt-sass": "~3.1.0",
    4446        "matchdep": "~2.0.0",
    45         "sass": "^1.32.6"
     47        "sass": "^1.32.6",
     48        "wait-on": "5.2.1"
     49    },
     50    "scripts": {
     51        "build": "grunt build",
     52        "test": "grunt test",
     53        "watch": "grunt watch",
     54        "grunt": "grunt",
     55        "env:start": "node ./tools/local-env/scripts/start.js",
     56        "env:stop": "node ./tools/local-env/scripts/docker.js down",
     57        "env:restart": "npm run env:stop && npm run env:start",
     58        "env:clean": "node ./tools/local-env/scripts/docker.js down -v --remove-orphans",
     59        "env:reset": "node ./tools/local-env/scripts/docker.js down --rmi all -v --remove-orphans",
     60        "env:install": "node ./tools/local-env/scripts/install.js",
     61        "env:cli": "node ./tools/local-env/scripts/docker.js run cli",
     62        "env:logs": "node ./tools/local-env/scripts/docker.js logs",
     63        "env:pull": "node ./tools/local-env/scripts/docker.js pull",
     64        "test:php": "node ./tools/local-env/scripts/docker.js run --rm phpunit phpunit"
    4665    }
    4766}
Note: See TracChangeset for help on using the changeset viewer.