From 2979e0411be1e4576ed49fcab1f29fb3369e9487 Mon Sep 17 00:00:00 2001 From: Lars Jung Date: Thu, 26 May 2016 18:43:33 +0200 Subject: [PATCH] Fix naming issue. --- dist/{jquery.qrcode.js => jquery-qrcode.js} | 0 dist/{jquery.qrcode.min.js => jquery-qrcode.min.js} | 0 ghu.js | 2 +- package.json | 2 +- src/demo/index.html.jade | 2 +- src/{jquery.qrcode.js => jquery-qrcode.js} | 0 6 files changed, 3 insertions(+), 3 deletions(-) rename dist/{jquery.qrcode.js => jquery-qrcode.js} (100%) rename dist/{jquery.qrcode.min.js => jquery-qrcode.min.js} (100%) rename src/{jquery.qrcode.js => jquery-qrcode.js} (100%) diff --git a/dist/jquery.qrcode.js b/dist/jquery-qrcode.js similarity index 100% rename from dist/jquery.qrcode.js rename to dist/jquery-qrcode.js diff --git a/dist/jquery.qrcode.min.js b/dist/jquery-qrcode.min.js similarity index 100% rename from dist/jquery.qrcode.min.js rename to dist/jquery-qrcode.min.js diff --git a/ghu.js b/ghu.js index 4041a85..086bcbd 100644 --- a/ghu.js +++ b/ghu.js @@ -1,7 +1,7 @@ const {resolve, join} = require('path'); const {ghu, includeit, jade, jszip, mapfn, read, remove, uglify, wrap, write} = require('ghu'); -const NAME = 'jquery.qrcode'; +const NAME = 'jquery-qrcode'; const ROOT = resolve(__dirname); const SRC = join(ROOT, 'src'); diff --git a/package.json b/package.json index 3df9435..93ef342 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery-qrcode", "displayName": "jQuery.qrcode", - "version": "0.13.0", + "version": "0.13.1", "description": "Generate QR codes dynamically.", "homepage": "https://larsjung.de/jquery-qrcode/", "bugs": "https://github.com/lrsjng/jquery-qrcode/issues", diff --git a/src/demo/index.html.jade b/src/demo/index.html.jade index 2edf3bd..4495559 100644 --- a/src/demo/index.html.jade +++ b/src/demo/index.html.jade @@ -11,7 +11,7 @@ html(lang='en') link(href='//fonts.googleapis.com/css?family=Ubuntu:300,400,700', rel='stylesheet') link(href='styles.css', rel='stylesheet') script(src='jquery.min.js') - script(src='../jquery.qrcode-#{pkg.version}.js') + script(src='../jquery-qrcode-#{pkg.version}.js') script(src='scripts.js') body diff --git a/src/jquery.qrcode.js b/src/jquery-qrcode.js similarity index 100% rename from src/jquery.qrcode.js rename to src/jquery-qrcode.js