Verified Commit e9a2e9ab authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2484623 by quietone, anavarre, nod_, Manuel Garcia, rteijeiro,...

Issue #2484623 by quietone, anavarre, nod_, Manuel Garcia, rteijeiro, kostyashupenko, ankithashetty, smustgrave, jeroent, xjm, droplet, cilefen, travis-bradbury, catch: Move all JS in modules to a js/ folder
parent f296e346
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ assets/vendor/**/*
node_modules/**/*
**/js_test_files/**/*
**/build/**/*
modules/locale/tests/locale_test.js
modules/locale/tests/js/locale_test.js
misc/jquery.form.js

# Ignore deliberately malformed YAML files.
+8 −1
Original line number Diff line number Diff line
drupal.comment:
  version: VERSION
  js:
    comment-entity-form.js: {}
    js/comment-entity-form.js: {}
  dependencies:
    - core/jquery
    - core/drupal
    - core/drupal.form
  moved_files:
    comment/drupal.comment:
      deprecation_version: drupal:11.1.0
      removed_version: drupal:12.0.0
      deprecation_link: https://www.drupal.org/node/3471539
      js:
        comment-entity-form.js: 'js/comment-entity-form.js'

drupal.comment-by-viewer:
  version: VERSION
+8 −1
Original line number Diff line number Diff line
drupal.content_translation.admin:
  version: VERSION
  js:
    content_translation.admin.js: {}
    js/content_translation.admin.js: {}
  css:
    theme:
      css/content_translation.admin.css: {}
@@ -9,3 +9,10 @@ drupal.content_translation.admin:
    - core/jquery
    - core/drupal
    - core/once
  moved_files:
    content_translation/content_translation.admin.js:
      deprecation_version: drupal:11.1.0
      removed_version: drupal:12.0.0
      deprecation_link: https://www.drupal.org/node/3471539
      js:
        content_translation_admin.js: 'js/content_translation.admin.js'
Loading