Make WordPress Core


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

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

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

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

Location:
branches/3.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.7

  • branches/3.7/package.json

    r50224 r50251  
    1414    "license": "GPLv2 or later",
    1515    "devDependencies": {
     16        "dotenv": "^8.2.0",
     17        "dotenv-expand": "^5.1.0",
    1618        "grunt": "~1.3.0",
    1719        "grunt-contrib-clean": "~2.0.0",
     
    2527        "grunt-legacy-util": "^2.0.0",
    2628        "grunt-patch-wordpress": "~3.0.0",
    27         "matchdep": "~2.0.0"
     29        "matchdep": "~2.0.0",
     30        "wait-on": "5.2.1"
     31    },
     32    "scripts": {
     33        "build": "grunt build",
     34        "test": "grunt test",
     35        "watch": "grunt watch",
     36        "grunt": "grunt",
     37        "env:start": "node ./tools/local-env/scripts/start.js",
     38        "env:stop": "node ./tools/local-env/scripts/docker.js down",
     39        "env:restart": "npm run env:stop && npm run env:start",
     40        "env:clean": "node ./tools/local-env/scripts/docker.js down -v --remove-orphans",
     41        "env:reset": "node ./tools/local-env/scripts/docker.js down --rmi all -v --remove-orphans",
     42        "env:install": "node ./tools/local-env/scripts/install.js",
     43        "env:cli": "node ./tools/local-env/scripts/docker.js run cli",
     44        "env:logs": "node ./tools/local-env/scripts/docker.js logs",
     45        "env:pull": "node ./tools/local-env/scripts/docker.js pull",
     46        "test:php": "node ./tools/local-env/scripts/docker.js run --rm phpunit phpunit"
    2847    }
    2948}
Note: See TracChangeset for help on using the changeset viewer.