Skip to content
Snippets Groups Projects

Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS

Closed Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS
Closed Harumi Jang requested to merge issue/drupal-3238915:3238915-refactor-if-feasible into 9.3.x
4 files
+ 58
55
Compare changes
  • Side-by-side
  • Inline
Files
4
  • 9db4e31b
    Issue #3198340 by alexpott, xjm, Mile23, cilefen, mmjvb, catch, Mixologic,... · 9db4e31b
    catch authored
    Issue #3198340 by alexpott, xjm, Mile23, cilefen, mmjvb, catch, Mixologic, effulgentsia, mfb, longwave, larowlan, greg.1.anderson, Warped, quietone: Strict constraints in drupal/core-recommended make it harder for Composer-managed sites to apply their own security updates when a core update is not available
@@ -41,7 +41,7 @@ public function getPackage() {
@@ -41,7 +41,7 @@ public function getPackage() {
// If there is no 'source' record, then this is a path repository
// If there is no 'source' record, then this is a path repository
// or something else that we do not want to include.
// or something else that we do not want to include.
if (isset($package['source']) && !in_array($package['name'], $remove_list)) {
if (isset($package['source']) && !in_array($package['name'], $remove_list)) {
$composer['require'][$package['name']] = $package['version'];
$composer['require'][$package['name']] = '~' . $package['version'];
}
}
}
}
return $composer;
return $composer;
@@ -56,7 +56,7 @@ protected function initialPackageMetadata() {
@@ -56,7 +56,7 @@ protected function initialPackageMetadata() {
return [
return [
"name" => "drupal/core-recommended",
"name" => "drupal/core-recommended",
"type" => "metapackage",
"type" => "metapackage",
"description" => "Locked core dependencies; require this project INSTEAD OF drupal/core.",
"description" => "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
"license" => "GPL-2.0-or-later",
"license" => "GPL-2.0-or-later",
"conflict" => [
"conflict" => [
"webflo/drupal-core-strict" => "*",
"webflo/drupal-core-strict" => "*",
Loading