Skip to content

Commit 6b7622c

Browse files
committed
📦 Release v3.12.1
1 parent fd1347f commit 6b7622c

15 files changed

+2686
-119
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Download or get the CDN link to the script:
135135

136136
| Name | Supported barcodes | Size (gzip) | CDN / Download |
137137
|------|--------------------|:-----------:|---------------:|
138-
| *All* | *All the barcodes!* | *5.1 kB* | *[JsBarcode.all.min.js][1]* |
138+
| *All* | *All the barcodes!* | *11 kB* | *[JsBarcode.all.min.js][1]* |
139139
| CODE128 | CODE128 (auto and force mode) | 6.2 kB | [JsBarcode.code128.min.js][2] |
140140
| CODE39 | CODE39 | 5.1 kB | [JsBarcode.code39.min.js][3] |
141141
| EAN / UPC | EAN-13, EAN-8, EAN-5, EAN-2, UPC (A) | 6.6 kB | [JsBarcode.ean-upc.min.js][4] |

bin/barcodes/index.js

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,36 @@
11
'use strict';
22

33
Object.defineProperty(exports, "__esModule", {
4-
value: true
4+
value: true
55
});
66

7-
var _CODE = require('./CODE39');
7+
var _CODE = require('./CODE39/');
88

9-
exports.default = { CODE39: _CODE.CODE39 };
9+
var _CODE2 = require('./CODE128/');
10+
11+
var _EAN_UPC = require('./EAN_UPC/');
12+
13+
var _ITF = require('./ITF/');
14+
15+
var _MSI = require('./MSI/');
16+
17+
var _pharmacode = require('./pharmacode/');
18+
19+
var _codabar = require('./codabar');
20+
21+
var _CODE3 = require('./CODE93/');
22+
23+
var _GenericBarcode = require('./GenericBarcode/');
24+
25+
exports.default = {
26+
CODE39: _CODE.CODE39,
27+
CODE128: _CODE2.CODE128, CODE128A: _CODE2.CODE128A, CODE128B: _CODE2.CODE128B, CODE128C: _CODE2.CODE128C,
28+
EAN13: _EAN_UPC.EAN13, EAN8: _EAN_UPC.EAN8, EAN5: _EAN_UPC.EAN5, EAN2: _EAN_UPC.EAN2, UPC: _EAN_UPC.UPC, UPCE: _EAN_UPC.UPCE,
29+
ITF14: _ITF.ITF14,
30+
ITF: _ITF.ITF,
31+
MSI: _MSI.MSI, MSI10: _MSI.MSI10, MSI11: _MSI.MSI11, MSI1010: _MSI.MSI1010, MSI1110: _MSI.MSI1110,
32+
pharmacode: _pharmacode.pharmacode,
33+
codabar: _codabar.codabar,
34+
CODE93: _CODE3.CODE93, CODE93FullASCII: _CODE3.CODE93FullASCII,
35+
GenericBarcode: _GenericBarcode.GenericBarcode
36+
};

bin/barcodes/index.tmp.js

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,36 @@
11
'use strict';
22

33
Object.defineProperty(exports, "__esModule", {
4-
value: true
4+
value: true
55
});
66

7-
var _CODE = require('./CODE39');
7+
var _CODE = require('./CODE39/');
88

9-
exports.default = { CODE39: _CODE.CODE39 };
9+
var _CODE2 = require('./CODE128/');
10+
11+
var _EAN_UPC = require('./EAN_UPC/');
12+
13+
var _ITF = require('./ITF/');
14+
15+
var _MSI = require('./MSI/');
16+
17+
var _pharmacode = require('./pharmacode/');
18+
19+
var _codabar = require('./codabar');
20+
21+
var _CODE3 = require('./CODE93/');
22+
23+
var _GenericBarcode = require('./GenericBarcode/');
24+
25+
exports.default = {
26+
CODE39: _CODE.CODE39,
27+
CODE128: _CODE2.CODE128, CODE128A: _CODE2.CODE128A, CODE128B: _CODE2.CODE128B, CODE128C: _CODE2.CODE128C,
28+
EAN13: _EAN_UPC.EAN13, EAN8: _EAN_UPC.EAN8, EAN5: _EAN_UPC.EAN5, EAN2: _EAN_UPC.EAN2, UPC: _EAN_UPC.UPC, UPCE: _EAN_UPC.UPCE,
29+
ITF14: _ITF.ITF14,
30+
ITF: _ITF.ITF,
31+
MSI: _MSI.MSI, MSI10: _MSI.MSI10, MSI11: _MSI.MSI11, MSI1010: _MSI.MSI1010, MSI1110: _MSI.MSI1110,
32+
pharmacode: _pharmacode.pharmacode,
33+
codabar: _codabar.codabar,
34+
CODE93: _CODE3.CODE93, CODE93FullASCII: _CODE3.CODE93FullASCII,
35+
GenericBarcode: _GenericBarcode.GenericBarcode
36+
};

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "JsBarcode",
33
"main": "dist/JsBarcode.all.min.js",
4-
"version": "3.12.0",
4+
"version": "3.12.1",
55
"homepage": "https://github.com/lindell/JsBarcode",
66
"authors": [
77
"Johan Lindell <johan@lindell.me>"

0 commit comments

Comments
 (0)