Skip to content

Commit 903026a

Browse files
authored
Remove projectTypes from commands (#57)
1 parent f8948a0 commit 903026a

File tree

9 files changed

+0
-9
lines changed

9 files changed

+0
-9
lines changed

commands/web/eslint

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Run eslint inside the web container
66
## Usage: eslint [flags] [args]
77
## Example: "ddev eslint"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
if "$DDEV_DOCROOT/core/node_modules/.bin/eslint" --version >/dev/null ; then

commands/web/expand-composer-json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Add Drupal core and other needed dependencies.
66
## Usage: expand-composer-json [flags] [PROJECT_NAME]
77
## Example: "ddev expand-composer-json ctools"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
export _WEB_ROOT=$DDEV_DOCROOT

commands/web/nightwatch

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Run nightwatch inside the web container
66
## Usage: nightwatch [flags] [args]
77
## Example: "ddev nightwatch"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
yarn --cwd "$DDEV_DOCROOT/core" test:nightwatch "$DDEV_COMPOSER_ROOT/$DDEV_DOCROOT/modules/custom/" "$@"

commands/web/phpcbf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Run phpcbf inside the web container
66
## Usage: phpcbf [flags] [args]
77
## Example: "ddev phpcbf" or "ddev phpcbf -n"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
if ! command -v phpcbf >/dev/null; then

commands/web/phpcs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Run phpcs inside the web container
66
## Usage: phpcs [flags] [args]
77
## Example: "ddev phpcs" or "ddev phpcs -n"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
if ! command -v phpcs >/dev/null; then

commands/web/phpunit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Run phpunit inside the web container
66
## Usage: phpunit [flags] [args]
77
## Example: "ddev phpunit" or "ddev phpunit --stop-on-failure"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
if ! command -v phpunit >/dev/null; then

commands/web/poser

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Expand composer.json and run composer install.
66
## Usage: poser [flags] [args]
77
## Example: "ddev poser"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
export COMPOSER=composer.contrib.json

commands/web/stylelint

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Run stylelint inside the web container
66
## Usage: stylelint [flags] [args]
77
## Example: "ddev stylelint"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
if yarn --cwd "$DDEV_DOCROOT/core" stylelint --version >/dev/null ; then

commands/web/symlink-project

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
## Description: Symlink all root files/dirs into web.modules/custom/[PROJECT_NAME]
66
## Usage: symlink-project [flags] [args]
77
## Example: "ddev symlink-project"
8-
## ProjectTypes: drupal,drupal8,drupal9,drupal10
98
## ExecRaw: true
109

1110
export _WEB_ROOT=$DDEV_DOCROOT

0 commit comments

Comments
 (0)