Skip to content

Commit

Permalink
chore(js-themes-toolkit): prepare v8.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wincent committed Dec 14, 2020
1 parent 83b66d3 commit 16c6bff
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 14 deletions.
26 changes: 26 additions & 0 deletions maintenance/projects/js-themes-toolkit-v8-x/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
## [js-themes-toolkit-v8-x/v8.2.3](https://github.com/liferay/liferay-frontend-projects/tree/js-themes-toolkit-v8-x/v8.2.3) (2020-12-11)

[Full changelog](https://github.com/liferay/liferay-frontend-projects/compare/liferay-js-themes-toolkit/v8.2.2...js-themes-toolkit-v8-x/v8.2.3)

### :wrench: Bug fixes

- fix(js-themes-toolkit): make adjustments to make CI pass on GitHub ([\#260](https://github.com/liferay/liferay-frontend-projects/pull/260))

### :book: Documentation

- docs(js-themes-toolkit): update links to point at new repo ([\#283](https://github.com/liferay/liferay-frontend-projects/pull/283))

### :house: Chores

- chore(js-themes-toolkit): hoist v8 devDependencies to workspace root ([\#285](https://github.com/liferay/liferay-frontend-projects/pull/285))
- chore(js-themes-tookit): clean up irrelevant .github directories ([\#279](https://github.com/liferay/liferay-frontend-projects/pull/279))
- chore(monorepo): clean up orphaned Travis config files ([\#276](https://github.com/liferay/liferay-frontend-projects/pull/276))

### :woman_juggling: Refactoring

- refactor(js-themes-toolikt): hoist lint and formatting config to repo root ([\#281](https://github.com/liferay/liferay-frontend-projects/pull/281))

### :eyeglasses: Tests

- test(monorepo): adjust CI coverage ([\#289](https://github.com/liferay/liferay-frontend-projects/pull/289))

## [v8.2.2](https://github.com/liferay/liferay-js-themes-toolkit/tree/v8.2.2) (2020-08-03)

[Full changelog](https://github.com/liferay/liferay-js-themes-toolkit/compare/v8.2.1...v8.2.2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"gulp": "^3.9.1",
"liferay-theme-tasks": "8.2.2",
"liferay-theme-tasks": "8.2.3",
"liferay-theme-deps-6.2": "7.0.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"chalk": "^2.4.2",
"inquirer": "^0.12.0",
"insight": "^0.10.1",
"liferay-theme-tasks": "^8.2.2",
"liferay-theme-tasks": "^8.2.3",
"lodash": "^4.17.10",
"minimist": "^1.2.0",
"yeoman-generator": "^3.2.0",
Expand All @@ -32,5 +32,5 @@
"type": "git",
"url": "https://github.com/liferay/liferay-frontend-projects"
},
"version": "8.2.2"
"version": "8.2.3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"type": "git",
"url": "https://github.com/liferay/liferay-frontend-projects"
},
"version": "8.2.2"
"version": "8.2.3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"type": "git",
"url": "https://github.com/liferay/liferay-frontend-projects"
},
"version": "8.2.2"
"version": "8.2.3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
function devDependencies(version) {
const dependencies = {
gulp: '3.9.1',
'liferay-theme-tasks': '8.2.2',
'liferay-theme-tasks': '8.2.3',
};

if (version === '7.0') {
dependencies['liferay-theme-deps-7.0'] = '8.2.2';
dependencies['liferay-theme-deps-7.0'] = '8.2.3';
}
else if (version === '7.1') {
dependencies['liferay-theme-deps-7.1'] = '8.2.2';
dependencies['liferay-theme-deps-7.1'] = '8.2.3';
}

return dependencies;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = function (options) {
lfrThemeConfig.removeDependencies(['liferay-theme-deps-6.2']);
lfrThemeConfig.setDependencies(
{
'liferay-theme-deps-7.0': '8.2.2',
'liferay-theme-deps-7.0': '8.2.3',
},
true
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ module.exports = function (options) {
lfrThemeConfig.removeDependencies(['liferay-theme-deps-7.0']);
lfrThemeConfig.setDependencies(
{
'liferay-theme-deps-7.1': '8.2.2',
'liferay-theme-tasks': '8.2.2',
'liferay-theme-deps-7.1': '8.2.3',
'liferay-theme-tasks': '8.2.3',
},
true
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"inquirer": "^0.12.0",
"liferay-plugin-node-tasks": "^2.0.0",
"liferay-theme-deps-6.2": "^7.0.0",
"liferay-theme-deps-7.0": "^8.2.2",
"liferay-theme-deps-7.1": "^8.2.2",
"liferay-theme-deps-7.0": "^8.2.3",
"liferay-theme-deps-7.1": "^8.2.3",
"list-stream": "^1.0.0",
"lodash": "^4.17.11",
"minimist": "^1.1.0",
Expand Down Expand Up @@ -66,5 +66,5 @@
"type": "git",
"url": "https://github.com/liferay/liferay-frontend-projects"
},
"version": "8.2.2"
"version": "8.2.3"
}

0 comments on commit 16c6bff

Please sign in to comment.