Skip to content

Commit

Permalink
Remove projectTypes from commands (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman authored May 29, 2024
1 parent f8948a0 commit 903026a
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion commands/web/eslint
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Run eslint inside the web container
## Usage: eslint [flags] [args]
## Example: "ddev eslint"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

if "$DDEV_DOCROOT/core/node_modules/.bin/eslint" --version >/dev/null ; then
Expand Down
1 change: 0 additions & 1 deletion commands/web/expand-composer-json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Add Drupal core and other needed dependencies.
## Usage: expand-composer-json [flags] [PROJECT_NAME]
## Example: "ddev expand-composer-json ctools"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

export _WEB_ROOT=$DDEV_DOCROOT
Expand Down
1 change: 0 additions & 1 deletion commands/web/nightwatch
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Run nightwatch inside the web container
## Usage: nightwatch [flags] [args]
## Example: "ddev nightwatch"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

yarn --cwd "$DDEV_DOCROOT/core" test:nightwatch "$DDEV_COMPOSER_ROOT/$DDEV_DOCROOT/modules/custom/" "$@"
1 change: 0 additions & 1 deletion commands/web/phpcbf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Run phpcbf inside the web container
## Usage: phpcbf [flags] [args]
## Example: "ddev phpcbf" or "ddev phpcbf -n"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

if ! command -v phpcbf >/dev/null; then
Expand Down
1 change: 0 additions & 1 deletion commands/web/phpcs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Run phpcs inside the web container
## Usage: phpcs [flags] [args]
## Example: "ddev phpcs" or "ddev phpcs -n"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

if ! command -v phpcs >/dev/null; then
Expand Down
1 change: 0 additions & 1 deletion commands/web/phpunit
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Run phpunit inside the web container
## Usage: phpunit [flags] [args]
## Example: "ddev phpunit" or "ddev phpunit --stop-on-failure"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

if ! command -v phpunit >/dev/null; then
Expand Down
1 change: 0 additions & 1 deletion commands/web/poser
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Expand composer.json and run composer install.
## Usage: poser [flags] [args]
## Example: "ddev poser"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

export COMPOSER=composer.contrib.json
Expand Down
1 change: 0 additions & 1 deletion commands/web/stylelint
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Run stylelint inside the web container
## Usage: stylelint [flags] [args]
## Example: "ddev stylelint"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

if yarn --cwd "$DDEV_DOCROOT/core" stylelint --version >/dev/null ; then
Expand Down
1 change: 0 additions & 1 deletion commands/web/symlink-project
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
## Description: Symlink all root files/dirs into web.modules/custom/[PROJECT_NAME]
## Usage: symlink-project [flags] [args]
## Example: "ddev symlink-project"
## ProjectTypes: drupal,drupal8,drupal9,drupal10
## ExecRaw: true

export _WEB_ROOT=$DDEV_DOCROOT
Expand Down

0 comments on commit 903026a

Please sign in to comment.