Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
diogoqueiros committed Jan 12, 2021
1 parent a3a6705 commit a5e9aa5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Node generated files
node_modules
npm-debug.log*
yarn.lock

# OS generated files
Thumbs.db
.DS_Store
.vscode

# Ignored files & folders
*.ts
!*.d.ts
/src
tsconfig.json
tslint.json
.idea
.travis.yml
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Cordova barcode scanning plugin for Point Mobile devices
## Installation

```bash
cordova plugin add https://github.com/diogoqueiros/cordova-plugin-point-mobile
cordova plugin add cordova-plugin-point-mobile
```

## Usage
Expand All @@ -24,7 +24,7 @@ pointMobile.scan(
data => {
console.log('## Point Mobile barcode received -> ', data);
console.log('barcode: ', data.barcode);
console.log('barcode type', data.type);
console.log('barcode type: ', data.type);
},
error => {
console.log('## Point Mobile error -> ', error);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cordova-plugin-point-mobile",
"description": "Cordova barcode scanning plugin for Point Mobile devices",
"version": "0.0.1",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/diogoqueiros/cordova-plugin-point-mobile"
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-plugin-point-mobile" version="0.0.1"
<plugin id="cordova-plugin-point-mobile" version="1.0.0"
xmlns="http://cordova.apache.org/ns/plugins/1.0">
<name>Cordova Plugin Point Mobile</name>
<description>Cordova barcode scanning plugin for Point Mobile devices</description>
Expand Down

0 comments on commit a5e9aa5

Please sign in to comment.