Skip to content

Commit d5ddea6

Browse files
committed
Release 20.6
1 parent 0f995e4 commit d5ddea6

15 files changed

Lines changed: 1070 additions & 703 deletions

Makefile

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
.PHONY: all
2+
all: format cover
3+
4+
.PHONY: format
5+
format:
6+
./scripts/docs_format.sh
7+
npm run format
8+
9+
.PHONY: build
10+
build:
11+
npm run build
12+
13+
.PHONY: test
14+
test: build
15+
npm test
16+
17+
.PHONY: cover
18+
cover:
19+
npm run cover
20+
21+
.PHONY: lint
22+
lint:
23+
npm run lint
24+
25+
.PHONY: update_packages
26+
update_packages:
27+
npm update
28+
npm outdated
29+
30+
.PHONY: check_git
31+
check_git:
32+
git fetch origin
33+
git diff origin/master --exit-code
34+
35+
.PHONY: clean
36+
clean:
37+
npm run clear
38+
39+
.PHONY: publish
40+
publish: clean format update_packages check_git test
41+
npm publish

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Aspose.BarCode Cloud SDK for Node.js
22

33
+ API version: 3.0
4-
+ Package version: 20.5.0
4+
+ Package version: 20.6.0
55

66
Aspose.BarCode for Cloud is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.
77

0 commit comments

Comments
 (0)