gulp-jlto 1.1.1 β†’ 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2018-2019 Dmytro Krekota
3
+ Copyright (c) 2018-2020 Dmytro Krekota
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,3 +1,13 @@
1
+ # Support Ukraine πŸ‡ΊπŸ‡¦
2
+
3
+ - Via United24 platform (the initiative of the President of Ukraine):
4
+ - [One click donation (credit card, bank transfer or crypto)](https://u24.gov.ua/)
5
+ - Via National Bank of Ukraine:
6
+ - [Ukrainian army](https://bank.gov.ua/en/about/support-the-armed-forces)
7
+ - [Humanitarian aid to Ukraine](https://bank.gov.ua/en/about/humanitarian-aid-to-ukraine)
8
+
9
+ [#StandWithUkraine](https://twitter.com/hashtag/StandWithUkraine)
10
+
1
11
  # gulp-jlto
2
12
 
3
13
  [![NPM](https://nodei.co/npm/gulp-jlto.png?downloads=true)](https://nodei.co/npm/gulp-jlto/)
@@ -23,7 +33,7 @@ gulp.task('jlto', () => {
23
33
  .src(['src/**/*.nunjucks'])
24
34
  .pipe(
25
35
  jlto({
26
- minifyHtml: true
36
+ minifyHtml: true,
27
37
  })
28
38
  )
29
39
  .pipe(gulp.dest('build'));
package/index.js CHANGED
@@ -3,7 +3,7 @@ let jlto = require('jlto');
3
3
 
4
4
  module.exports = (options) => {
5
5
  let transform = new stream.Transform({
6
- objectMode: true
6
+ objectMode: true,
7
7
  });
8
8
 
9
9
  transform._transform = (file, encoding, callback) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gulp-jlto",
3
- "version": "1.1.1",
3
+ "version": "1.2.1",
4
4
  "description": "Gulp tool for optimizing Jinja like templates",
5
5
  "keywords": [
6
6
  "jinja",
@@ -36,6 +36,6 @@
36
36
  },
37
37
  "license": "MIT",
38
38
  "dependencies": {
39
- "jlto": "~1.2.3"
39
+ "jlto": "^1.4.2"
40
40
  }
41
41
  }