Skip to content

Commit

Permalink
Merge pull request #300 from typograf/v6.7.2
Browse files Browse the repository at this point in the history
v6.7.2
  • Loading branch information
hcodes committed Apr 30, 2018
2 parents ee7623d + f57a865 commit 46130ee
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog

# v6.7.2
- Правки по сборке.

# v6.7.1
Исправлена ошибка в правиле `ru/punctuation/ano` #295

Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -6,6 +6,7 @@ environment:
matrix:
- nodejs_version: 6
- nodejs_version: 8
- nodejs_version: stable

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
6 changes: 4 additions & 2 deletions gulpfile.js
Expand Up @@ -117,7 +117,7 @@ gulp.task('all.js', gulp.series('js', 'jsonRules', 'jsonGroups', function allJs(
.pipe(gulp.dest(buildDir));
}));

gulp.task('min.js', gulp.series('js', function js() {
gulp.task('min.js', gulp.series('js', function minJs() {
return gulp.src(buildDir + 'typograf.js')
.pipe($.rename('typograf.min.js'))
.pipe($.uglify(uglifyOptions))
Expand Down Expand Up @@ -150,4 +150,6 @@ gulp.task('dist', gulp.series(
'jsonRules',
'jsonGroups',
'all.min.js'
, () => gulp.src(paths.build).pipe(gulp.dest(distDir))));
, function dist() {
return gulp.src(paths.build).pipe(gulp.dest(distDir));
}));
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "typograf",
"description": "The client and server typography",
"version": "6.7.1",
"version": "6.7.2",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
Expand Down Expand Up @@ -59,9 +59,9 @@
"benchmark": "node benchmark/test.js",
"dist": "gulp dist",
"eslint": "eslint .",
"prepublish": "npm run dist",
"rebuild": "gulp",
"test": "npm run rebuild && npm run eslint && npm run unit-test-coverage",
"prepare": "npm run dist",
"build": "gulp",
"test": "npm run build && npm run eslint && npm run unit-test-coverage",
"unit-test": "mocha -u bdd -R spec --recursive test",
"unit-test-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -u bdd -R spec --recursive test",
"yaspeller": "yaspeller ."
Expand Down

0 comments on commit 46130ee

Please sign in to comment.