Skip to content

Commit ac0af48

Browse files
committed
Update deps.
1 parent 761ecaa commit ac0af48

File tree

13 files changed

+6523
-59
lines changed

13 files changed

+6523
-59
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ insert_final_newline = true
1212
trim_trailing_whitespace = true
1313

1414

15-
[{bower.json,package.json,.eslintrc,.babelrc,.travis.yml}]
15+
[{package.json,.eslintrc,.babelrc,.travis.yml}]
1616
indent_size = 2
1717

1818

.eslintignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
**/build/**
2-
**/coverage/**
3-
**/dist/**
4-
**/vendor/**
5-
**/node_modules/**
1+
/build/
2+
/coverage/
3+
/dist/
4+
/vendor/
5+
/node_modules/

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
bower_components
2-
build
3-
local
4-
node_modules
5-
npm-debug.log
1+
/build/
2+
/coverage/
3+
/local/
4+
/node_modules/
5+
/npm-debug.log

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# jQuery.qrcode
22

3-
[![license][license-img]][github] [![web][web-img]][web] [![github][github-img]][github] [![bower][bower-img]][github]
3+
[![license][license-img]][github] [![web][web-img]][web] [![github][github-img]][github]
44

55
jQuery plugin to dynamically generate QR codes. Uses [QR Code Generator][qrcode] (MIT).
66

77

88
## License
99
The MIT License (MIT)
1010

11-
Copyright (c) 2016 Lars Jung (https://larsjung.de)
11+
Copyright (c) 2019 Lars Jung (https://larsjung.de)
1212

1313
Permission is hereby granted, free of charge, to any person obtaining a copy
1414
of this software and associated documentation files (the "Software"), to deal
@@ -35,6 +35,5 @@ THE SOFTWARE.
3535
[license-img]: https://img.shields.io/badge/license-MIT-a0a060.svg?style=flat-square
3636
[web-img]: https://img.shields.io/badge/web-larsjung.de/qrcode-a0a060.svg?style=flat-square
3737
[github-img]: https://img.shields.io/badge/github-lrsjng/jquery--qrcode-a0a060.svg?style=flat-square
38-
[bower-img]: https://img.shields.io/badge/bower-lrsjng/jquery--qrcode-a0a060.svg?style=flat-square
3938

4039
[qrcode]: https://github.com/kazuhikoarase/qrcode-generator

bower.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

dist/jquery-qrcode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jquery-qrcode v0.14.0 - https://larsjung.de/jquery-qrcode/ */
1+
/*! jquery-qrcode v0.15.0 - https://larsjung.de/jquery-qrcode/ */
22
(function (vendor_qrcode) {
33
'use strict';
44

dist/jquery-qrcode.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ghu.js

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const {resolve, join} = require('path');
2-
const {ghu, includeit, jade, jszip, mapfn, read, remove, uglify, wrap, write} = require('ghu');
2+
const {ghu, includeit, pug, jszip, mapfn, read, remove, uglify, wrap, write} = require('ghu');
33

44
const NAME = 'jquery-qrcode';
55

@@ -37,11 +37,14 @@ ghu.task('build:scripts', runtime => {
3737

3838
ghu.task('build:demo', runtime => {
3939
return Promise.all([
40-
read(`${SRC}/demo/*.jade`)
41-
.then(jade({pkg: runtime.pkg}))
42-
.then(write(mapfn.p(SRC, BUILD).s('.jade', ''), {overwrite: true})),
43-
read(`${SRC}/demo/*, !**/*.jade`)
44-
.then(write(mapfn.p(SRC, BUILD), {overwrite: true}))
40+
read(`${SRC}/demo/*.pug`)
41+
.then(pug({pkg: runtime.pkg}))
42+
.then(write(mapfn.p(SRC, BUILD).s('.pug', ''), {overwrite: true})),
43+
read(`${SRC}/demo/*, !**/*.pug`)
44+
.then(write(mapfn.p(SRC, BUILD), {overwrite: true})),
45+
46+
read(`${ROOT}/node_modules/jquery/dist/jquery.min.js`)
47+
.then(write(`${BUILD}/demo/jquery.min.js`, {overwrite: true}))
4548
]);
4649
});
4750

@@ -50,7 +53,7 @@ ghu.task('build:copy', () => {
5053
read(`${VENDOR}/demo/*`)
5154
.then(write(mapfn.p(VENDOR, BUILD), {overwrite: true})),
5255
read(`${ROOT}/*.md`)
53-
.then(write(mapfn.p(ROOT, BUILD), {overwrite: true}))
56+
.then(write(mapfn.p(ROOT, BUILD), {overwrite: true}))
5457
]);
5558
});
5659

0 commit comments

Comments
 (0)