Skip to content

Commit

Permalink
Updated package versions and updated contributers
Browse files Browse the repository at this point in the history
  • Loading branch information
rtak committed Feb 8, 2021
1 parent ea9bed3 commit f9b0f02
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 6 additions & 1 deletion app/templates/_source/js/utilities/setExtLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ const setExtLinks = {
initAll: links => {
if (links) {
[...links].forEach(link => {
link.setAttribute('rel', 'noopener');
const currentRel = link.getAttribute('rel');
// Add the current rel to the noopener rel
link.setAttribute(
'rel',
`noopener${currentRel ? ` ${currentRel}` : ''}`
);
});
}
},
Expand Down
6 changes: 3 additions & 3 deletions app/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
Expand All @@ -42,8 +42,8 @@
"prettier": "^1.17.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-supple": "^2.1.0",
"stylelint": "^13.8.0",
"stylelint-config-supple": "^3.0.3",
"stylelint-scss": "^3.6.1",
"svg-sprite-loader": "^4.1.6",
"svg-spritemap-webpack-plugin": "^3.3.0",
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@e-sites/generator-esites-fe",
"version": "3.1.6",
"version": "3.1.7",
"description": "Yeoman generator for E-sites frontend",
"main": "index.js",
"scripts": {
Expand All @@ -23,7 +23,9 @@
],
"author": "Bram Smulders <[email protected]>",
"contributors": [
"Remco Tak <[email protected]>"
"Remco Tak <[email protected]>",
"Tom Schalken <[email protected]>",
"Nadia van Leur <[email protected]>"
],
"license": "MIT",
"bugs": {
Expand Down

0 comments on commit f9b0f02

Please sign in to comment.