Skip to content

Commit

Permalink
TOTP: Require qrcode-generator
Browse files Browse the repository at this point in the history
  • Loading branch information
iandunn committed Nov 8, 2022
1 parent 7709580 commit c8c73a0
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 20,223 deletions.
16 changes: 13 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,19 @@ module.exports = function( grunt ) {

copy: {
dist: {
src: [ '**' ].concat( distignore ),
dest: '<%= dist_dir %>',
expand: true,
files: [
{
src: [ '**' ].concat( distignore ),
dest: '<%= dist_dir %>',
expand: true,
},
{
cwd: 'node_modules/',
src: 'qrcode-generator/qrcode.js',
dest: '<%= dist_dir %>/includes',
expand: true,
}
],
},
},

Expand Down
Loading

0 comments on commit c8c73a0

Please sign in to comment.