Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Composer and NPM dependencies #47

Merged
merged 5 commits into from Oct 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc
@@ -1,4 +1,4 @@
{
// @docroot
"extends": "./web/core/.eslintrc.json"
"extends": "./web/core/.eslintrc.legacy.json"
}
6 changes: 6 additions & 0 deletions CHANGELOG.txt
@@ -1,6 +1,12 @@
Development
-----------

## [Unreleased]
Changed
* Use Legacy configuration for ESLint
* Drupal core update to 8.4.0
* Symfony component update to 3.3.*

1.3.0 2017-08-30
----------------
* rm -rf composer dependencies before attempting final optimized install to fix Drupal console uninstall bug. See https://github.com/hechoendrupal/drupal-console-extend-plugin/issues/2
Expand Down
32 changes: 13 additions & 19 deletions backstop/scenarios.js
Expand Up @@ -12,24 +12,18 @@
* For more information, see
* https://github.com/garris/BackstopJS#here-is-the-configuration-that-backstop-genconfig-generates
*/
(function () {
'use strict';
var baseUrl = process.env.BASE_URL;

var baseUrl = process.env.BASE_URL;

module.exports = [
{
label: 'Homepage',
url: baseUrl + '/',
hideSelectors: [],
removeSelectors: [],
selectors: [
'document'
],
readyEvent: null,
delay: 500,
misMatchThreshold: 0.1
}
];
})();
module.exports = [
{
label: 'Homepage',
url: baseUrl + '/',
hideSelectors: [],
removeSelectors: [],
selectors: ['document'],
readyEvent: null,
delay: 500,
misMatchThreshold: 0.1
}
];

1 change: 1 addition & 0 deletions backstop/viewports.js
@@ -1,3 +1,4 @@
/* eslint-env node */
/**
* BackstopJS Viewports.
*
Expand Down