Skip to content
This repository was archived by the owner on Nov 6, 2022. It is now read-only.

Commit 1f9ba29

Browse files
authored
Merge pull request #175 from trailimage/develop
fix map links
2 parents ce5808f + 909487b commit 1f9ba29

15 files changed

+404
-400
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 5.1.1
2+
3+
- Update image lazy load plugin
4+
- Fix image map link
5+
16
## 5.1.0
27

38
- Improve paragraph and blockquote padding consistency

gulpfile.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,9 @@ const buildCSS = () =>
5252

5353
// https://github.com/gulp-sourcemaps/gulp-sourcemaps
5454
const buildJS = () =>
55-
merge(
56-
tsConfig.src().pipe(tsConfig()),
57-
gulp.src(jsPath + 'jquery.lazyload.js')
58-
)
55+
merge(tsConfig.src().pipe(tsConfig()))
5956
.pipe(
60-
bundle('post', 'static-map', 'jquery.lazyload').as('post', {
57+
bundle('post', 'static-map', 'lazy-load').as('post', {
6158
keep: ['static-map']
6259
})
6360
)

package-lock.json

+226-94
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@trail-image/blog",
33
"description": "Trail Image blog",
4-
"version": "5.1.0",
4+
"version": "5.1.1",
55
"private": false,
66
"author": {
77
"name": "Jason Abbott"
@@ -19,17 +19,17 @@
1919
},
2020
"dependencies": {
2121
"@toba/block-spam-referer": "^2.1.0",
22-
"@toba/develop": "^6.7.4",
22+
"@toba/develop": "^6.7.5",
2323
"@toba/feed": "^3.1.1",
2424
"@toba/handlebars": "^2.1.0",
25-
"@toba/node-tools": "^1.4.12",
25+
"@toba/node-tools": "^1.4.13",
2626
"@trailimage/flickr-provider": "^3.2.0",
2727
"@trailimage/google-provider": "^2.5.0",
2828
"@trailimage/models": "^3.2.1",
2929
"compression": "^1.7.0",
3030
"express": "^4.16.0",
3131
"node-fetch": "^2.2.0",
32-
"uglify-js": "^3.6.9"
32+
"uglify-js": "^3.7.2"
3333
},
3434
"devDependencies": {
3535
"@toba/test": "^4.1.17",
@@ -40,10 +40,10 @@
4040
"@types/gapi": "0.0.35",
4141
"@types/geojson": "^7946.0.0",
4242
"@types/google.analytics": "^0.0.37",
43-
"@types/googlemaps": "^3.38.0",
43+
"@types/googlemaps": "^3.38.1",
4444
"@types/jquery": "^3.3.0",
4545
"@types/mapbox-gl": "^0.45.0",
46-
"@types/node-fetch": "^2.5.3",
46+
"@types/node-fetch": "^2.5.4",
4747
"@types/request": "^2.48.3",
4848
"@types/twitter": "1.7.0",
4949
"@types/uglify-js": "^3.0.0",
@@ -58,7 +58,7 @@
5858
"merge2": "^1.3.0",
5959
"through2": "^3.0.0",
6060
"ts-node-dev": "^1.0.0-pre.44",
61-
"typescript": "^3.7.2"
61+
"typescript": "^3.7.3"
6262
},
6363
"repository": {
6464
"type": "git",

public/js/jquery.lazyload.js

-2
This file was deleted.

public/js/lazy-load.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/mapbox.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/post.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)