Skip to content

Commit eecec5e

Browse files
committed
Update to 1.7.7
1 parent c001620 commit eecec5e

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release Notes
22

3+
[1.7.7]: https://github.com/digikid/gulp-project/releases/tag/1.7.7
4+
5+
## [1.7.7] - 2022-07-14
6+
7+
### Features
8+
- `boilerplateVersion` param
9+
10+
### Bug Fixes
11+
- Minor bug fixes, code refactoring
12+
313
[1.7.6]: https://github.com/digikid/gulp-project/releases/tag/1.7.6
414

515
## [1.7.6] - 2022-07-09

gulp/config/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
const { name, description, version} = add('@/package.json');
2-
1+
const { name, description, version, boilerplateVersion } = add('@/package.json');
32
const { concat } = add('@gulp/utils/params');
43

54
const root = '.';
@@ -18,5 +17,6 @@ module.exports = {
1817
description,
1918
name,
2019
version,
20+
boilerplateVersion,
2121
...params
2222
};

gulp/config/repo.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
const {
2-
name,
3-
description,
4-
version,
5-
repository
6-
} = add('@/package.json');
7-
1+
const { repository } = add('@/package.json');
82
const { trimExt } = add('@gulp/utils/path');
93

104
const repo = trimExt(repository.url);

gulp/tasks/abstract/html.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = (gulp, plugins, config) => {
2929
now,
3030
repo,
3131
version,
32+
boilerplateVersion,
3233
theme,
3334
authors,
3435
copyright
@@ -48,6 +49,7 @@ module.exports = (gulp, plugins, config) => {
4849
now,
4950
repo,
5051
version,
52+
boilerplateVersion,
5153
theme,
5254
authors,
5355
copyright

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "gulp-project",
3-
"version": "1.7.6",
43
"description": "Automated project build with Gulp and Webpack",
4+
"version": "1.7.7",
5+
"boilerplateVersion": "1.7.7",
56
"main": "gulpfile.js",
67
"dependencies": {
78
"@babel/runtime": "^7.16.7",

src/abstract/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ <h2 class="section__title">Контакты</h2>
113113
<div class="container">
114114
@@if(copyright) {
115115
<p>&copy; @@now.year @@copyright.</p>}
116-
<p class="modified">Разработано на основе <a target="_blank" href="https://github.com/digikid/gulp-project">gulp-project</a>, версия @@version.<br>Дата и время последней сборки проекта: @@now.date в @@now.time (@@now.day).</p>
116+
<p class="modified">Разработано на основе <a target="_blank" href="https://github.com/digikid/gulp-project">gulp-project</a>, версия @@boilerplateVersion.<br>Дата и время последней сборки проекта: @@now.date в @@now.time (@@now.day).</p>
117117
</div>
118118
</footer>
119119

0 commit comments

Comments
 (0)