diff --git a/core/core.libraries.yml b/core/core.libraries.yml index 825ed77..1d3a011 100644 --- a/core/core.libraries.yml +++ b/core/core.libraries.yml @@ -8,7 +8,7 @@ backbone: url: https://github.com/jashkenas/backbone/blob/1.1.2/LICENSE gpl-compatible: true js: - assets/vendor/backbone/backbone-min.js: { weight: -19, minified: true } + assets/vendor/backbone/backbone-min.js: { minified: true } dependencies: - core/underscore @@ -20,7 +20,7 @@ classList: url: https://github.com/eligrey/classList.js/blob/2014-12-13/LICENSE.md gpl-compatible: true js: - assets/vendor/classList/classList.min.js: { weight: -21, browsers: { IE: 'lte IE 9', '!IE': false }, minified: true } + assets/vendor/classList/classList.min.js: { browsers: { IE: 'lte IE 9', '!IE': false }, minified: true } ckeditor: remote: https://github.com/ckeditor/ckeditor-dev @@ -40,12 +40,12 @@ domready: url: https://github.com/ded/domready/blob/v1.0.7/LICENSE gpl-compatible: true js: - assets/vendor/domready/ready.min.js: { weight: -21, minified: true } + assets/vendor/domready/ready.min.js: { minified: true } drupal: version: VERSION js: - misc/drupal.js: { weight: -18 } + misc/drupal.js: {} dependencies: - core/domready - core/drupalSettings @@ -102,7 +102,7 @@ drupal.announce: drupal.autocomplete: version: VERSION js: - misc/autocomplete.js: { weight: -1 } + misc/autocomplete.js: {} dependencies: - core/jquery - core/drupal @@ -246,7 +246,7 @@ drupal.tabbingmanager: drupal.tabledrag: version: VERSION js: - misc/tabledrag.js: { weight: -1 } + misc/tabledrag.js: {} dependencies: - core/jquery - core/modernizr @@ -297,7 +297,7 @@ drupal.vertical-tabs: version: VERSION js: # Load before core/drupal.collapse. - misc/vertical-tabs.js: { weight: -1 } + misc/vertical-tabs.js: {} css: component: misc/vertical-tabs.css: {} @@ -318,7 +318,7 @@ html5shiv: url: http://www.gnu.org/licenses/gpl-2.0.html gpl-compatible: true js: - assets/vendor/html5shiv/html5shiv.min.js: { every_page: true, weight: -22, browsers: { IE: 'lte IE 8', '!IE': false }, minified: true } + assets/vendor/html5shiv/html5shiv.min.js: { every_page: true, browsers: { IE: 'lte IE 8', '!IE': false }, minified: true } jquery: remote: https://github.com/jquery/jquery @@ -328,7 +328,7 @@ jquery: url: https://github.com/jquery/jquery/blob/2.1.3/MIT-LICENSE.txt gpl-compatible: true js: - assets/vendor/jquery/jquery.min.js: { minified: true, weight: -20 } + assets/vendor/jquery/jquery.min.js: { minified: true } jquery.cookie: remote: https://github.com/carhartl/jquery-cookie @@ -398,7 +398,7 @@ jquery.once: url: https://github.com/RobLoach/jquery-once/blob/1.2.3/LICENSE gpl-compatible: true js: - assets/vendor/jquery-once/jquery.once.js: { weight: -19 } + assets/vendor/jquery-once/jquery.once.js: {} dependencies: - core/jquery @@ -410,7 +410,7 @@ jquery.ui: url: https://github.com/jquery/jquery-ui/blob/1.11.2/MIT-LICENSE.txt gpl-compatible: true js: - assets/vendor/jquery.ui/ui/core-min.js: { weight: -11, minified: true } + assets/vendor/jquery.ui/ui/core-min.js: { minified: true } css: component: assets/vendor/jquery.ui/themes/base/core.css: {} @@ -510,7 +510,7 @@ jquery.ui.effects.core: version: *jquery_ui_version license: *jquery_ui_license js: - assets/vendor/jquery.ui/ui/effect-min.js: { weight: -9, minified: true } + assets/vendor/jquery.ui/ui/effect-min.js: { minified: true } jquery.ui.effects.blind: version: *jquery_ui_version @@ -787,7 +787,7 @@ jquery.ui.widget: version: *jquery_ui_version license: *jquery_ui_license js: - assets/vendor/jquery.ui/ui/widget-min.js: { weight: -10, minified: true } + assets/vendor/jquery.ui/ui/widget-min.js: { minified: true } dependencies: - core/jquery.ui @@ -819,7 +819,7 @@ modernizr: gpl-compatible: true version: v2.8.3 js: - assets/vendor/modernizr/modernizr.min.js: { every_page: true, preprocess: 0, weight: -21, minified: true } + assets/vendor/modernizr/modernizr.min.js: { every_page: true, preprocess: 0 } normalize: remote: https://github.com/necolas/normalize.css @@ -830,7 +830,7 @@ normalize: gpl-compatible: true css: base: - assets/vendor/normalize-css/normalize.css: { every_page: true, weight: -20 } + assets/vendor/normalize-css/normalize.css: { every_page: true } picturefill: remote: https://github.com/scottjehl/picturefill @@ -842,7 +842,7 @@ picturefill: url: https://github.com/scottjehl/picturefill/blob/master/LICENSE gpl-compatible: true js: - assets/vendor/picturefill/picturefill.js: { weight: -10 } + assets/vendor/picturefill/picturefill.js: {} dependencies: - core/matchmedia @@ -854,4 +854,4 @@ underscore: url: https://github.com/jashkenas/underscore/blob/1.7.0/LICENSE gpl-compatible: true js: - assets/vendor/underscore/underscore-min.js: { weight: -20, minified: true } + assets/vendor/underscore/underscore-min.js: { minified: true } diff --git a/core/modules/contextual/contextual.libraries.yml b/core/modules/contextual/contextual.libraries.yml index 16961a6..425cec7 100644 --- a/core/modules/contextual/contextual.libraries.yml +++ b/core/modules/contextual/contextual.libraries.yml @@ -3,14 +3,14 @@ drupal.contextual-links: js: # Ensure to run before contextual/drupal.context-toolbar. # Core. - js/contextual.js: { weight: -2 } + js/contextual.js: {} # Models. - js/models/StateModel.js: { weight: -2 } + js/models/StateModel.js: {} # Views. - js/views/AuralView.js: { weight: -2 } - js/views/KeyboardView.js: { weight: -2 } - js/views/RegionView.js: { weight: -2 } - js/views/VisualView.js: { weight: -2 } + js/views/AuralView.js: {} + js/views/KeyboardView.js: {} + js/views/RegionView.js: {} + js/views/VisualView.js: {} css: component: css/contextual.module.css: {} diff --git a/core/modules/system/system.libraries.yml b/core/modules/system/system.libraries.yml index 34c90dd..20bdb64 100644 --- a/core/modules/system/system.libraries.yml +++ b/core/modules/system/system.libraries.yml @@ -3,9 +3,9 @@ base: css: # Adjust the weights to load these early. component: - css/system.module.css: { every_page: true, weight: -10, } + css/system.module.css: { every_page: true } theme: - css/system.theme.css: { every_page: true, weight: -10 } + css/system.theme.css: { every_page: true } dependencies: - core/normalize @@ -13,7 +13,7 @@ admin: version: VERSION css: theme: - css/system.admin.css: { weight: -10 } + css/system.admin.css: {} dependencies: - system/base @@ -21,7 +21,7 @@ maintenance: version: VERSION css: theme: - css/system.maintenance.css: { weight: -10 } + css/system.maintenance.css: {} dependencies: - system/base - system/admin diff --git a/core/modules/views/views.libraries.yml b/core/modules/views/views.libraries.yml index 03efb2c..40bfc4c 100644 --- a/core/modules/views/views.libraries.yml +++ b/core/modules/views/views.libraries.yml @@ -21,7 +21,7 @@ views.contextual-links: version: VERSION js: # Ensure to run before contextual/drupal.contextual-links. - js/views-contextual.js: { weight: -10 } + js/views-contextual.js: {} dependencies: - core/jquery - core/drupal