Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
a8a29b2
First commit of v4 rewrite
lindell Jan 18, 2019
df738c0
Fixed merging of options
lindell Jan 19, 2019
2032ed3
Added get element by queryselecor
lindell Jan 19, 2019
20ff8a9
Added prettier
lindell Jan 19, 2019
b643d4e
Fixed prettierrc file
lindell Jan 19, 2019
709c145
Removed files
lindell Jan 19, 2019
306e51e
Fixed test
lindell Jan 19, 2019
bc0ee9d
Fixed tests
lindell Jan 19, 2019
e7f0d70
Removed bin
lindell Jan 19, 2019
e8cc3e7
Removed travis installing dependencies
lindell Jan 19, 2019
d98ec72
Fixed travis tests
lindell Jan 19, 2019
593c65a
Removed ununsed imports
lindell Jan 19, 2019
1b53f47
Fixed coverage in npm file
lindell Jan 19, 2019
02b0f55
Added NoElementException test
lindell Jan 19, 2019
6f0deb1
Fixed auto publishing
lindell Jan 20, 2019
45dd2ad
Updated package json
lindell Jan 20, 2019
08ed960
Updated example
lindell Jan 20, 2019
a68c22b
4.0.0-alpha.2
lindell Jan 20, 2019
a377784
Fixed tests
lindell Jan 20, 2019
b2e480c
Added new advanded api
lindell Jan 20, 2019
aefd425
Added blank test
lindell Jan 20, 2019
dbdcba1
Fixed deploying process
lindell Jan 20, 2019
019ce52
Changed from es6 class to reduce size cost
lindell Jan 21, 2019
d057803
Moved renderer from class to function
lindell Jan 21, 2019
8c3adeb
4.0.0-alpha.5
lindell Jan 22, 2019
ef1a00b
Remade codabar to new style
lindell Jan 24, 2019
bd74915
Remade code39 to new style
lindell Jan 24, 2019
4114e72
Fixed codabar and code39 tests
lindell Jan 24, 2019
b4c7069
Added alpha tag to npm publish
lindell Feb 25, 2019
404fb70
Fixed code128
lindell Feb 25, 2019
b19eac5
Remade ean13 ean 8 and ean2
lindell Feb 27, 2019
8396860
Moved upc to new format
lindell Feb 28, 2019
5b7f91e
Updated dependencies
lindell Mar 29, 2020
4682209
Updated prettier config
lindell Mar 29, 2020
c15942c
Updated code39 styling
lindell Mar 29, 2020
448c801
Updated upce to v4
lindell Mar 29, 2020
7b791f4
Fixed import path
lindell Mar 29, 2020
6e539fd
Removed node 6 and 7 support
lindell Mar 29, 2020
f5b1c77
Fixed GenericBarcode
lindell Mar 22, 2021
dd1d619
Migraded ITF and ITF14
lindell Mar 22, 2021
8388953
Fixed nl
lindell Mar 22, 2021
f233c3e
Removed docker
lindell Mar 22, 2021
89b7ae3
Updated packages
lindell Mar 22, 2021
4f5d02b
Package update
lindell Mar 22, 2021
4a52e52
Migrated MSI
lindell Mar 23, 2021
2b9b7b0
Migrated pharmacode
lindell Mar 23, 2021
cc853e0
Removed barcode class
lindell Mar 23, 2021
ffad40f
Function MSI
lindell Apr 11, 2021
ec0f552
Function Codabar
lindell Apr 11, 2021
526fa3d
Function CODE39
lindell Apr 11, 2021
3b5e3dd
Removed node 8 and 9 travis
lindell Apr 11, 2021
371ab8e
Function code128
lindell Apr 12, 2021
44599e7
Function EAN/UPC
lindell Apr 13, 2021
0c899c7
Function generic barcode
lindell May 6, 2021
b7d48dd
Function ITF
lindell May 6, 2021
560d818
Function pharmacode
lindell May 6, 2021
c00ee22
Initial typescript commit
lindell May 7, 2021
03b3b48
Options type
lindell May 8, 2021
8723231
Migrated to TS tests parallel to barcodes
lindell May 9, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .dockerignore

This file was deleted.

4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
}
},
"extends": "eslint:recommended",
"predef": "jQuery",
"rules": {
"curly": "error",
"semi": [1, "always"],
"no-console": 2,
"no-control-regex": 0,
"indent": [1, "tab", {"SwitchCase": 1}],
"space-infix-ops": ["error"],
"comma-spacing": ["error"]
"comma-spacing": ["error"],
"quotes": ["error", "single"]
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ jspm_packages

# Optional REPL history
.node_repl_history

.nyc_output
lib
dist
6 changes: 6 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 120,
"useTabs": true,
"singleQuote": true,
"trailingComma": "all"
}
32 changes: 21 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
language: node_js
sudo: required
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update
- npm install -g gulp
install:
- sudo apt-get install libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++-4.8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
- npm install
after_success: npm run coveralls
node_js:
- "node"
- "6"
- "5"
- "4"
- '10'
- '11'
- '12'
- '13'
jobs:
include:
- stage: npm release
if: tag IS present
node_js: '10'
script: npm run convert
deploy:
provider: npm
skip_cleanup: true
email: johan@lindell.me
api_key: $NPM_TOKEN
tag: alpha
on:
all_branches: true
env:
global:
secure: D02YgDzW5Ig6WWYXK7wL1qzmsUHeE3rRv3JK7IIZ2S1IuYJaKBfyRUag08lhrOLOsm4G/4QB+i0A6/X3EyGvdKuZea7tXbPMbsG7DwTzzdEfGX1bZwrtyXGrXPQY5Z0ggJCxjDxk7GkgnTgHPHqaCLPVurccwiXE/Yj0vvNNxn0=
84 changes: 0 additions & 84 deletions CONTRIBUTING.md

This file was deleted.

13 changes: 0 additions & 13 deletions Dockerfile

This file was deleted.

37 changes: 0 additions & 37 deletions automation/barcode-building.json

This file was deleted.

131 changes: 0 additions & 131 deletions automation/building.js

This file was deleted.

9 changes: 0 additions & 9 deletions automation/linting.js

This file was deleted.

30 changes: 0 additions & 30 deletions automation/misc.js

This file was deleted.

Loading