Skip to content

Commit

Permalink
Merge pull request #392 from tidev/updateDeps
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
hansemannn committed Oct 7, 2022
2 parents 53e3f71 + 76879ec commit c89ece1
Show file tree
Hide file tree
Showing 8 changed files with 10,633 additions and 14,748 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Android Build
on:
on:
push:
paths-ignore:
- 'ios/**'
Expand All @@ -17,15 +17,20 @@ jobs:
env:
CCACHE_DIR: ${{ github.workspace }}/.ccache
USE_CCACHE: 1
SDK_VERSION: 9.3.2.GA
SDK_VERSION: 11.0.0.GA
MODULE_ID: ti.barcode
steps:
- uses: actions/checkout@v2

- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'

- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'

- name: Cache Node.js modules
id: node-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'

- run: npm ci
name: Install dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: iOS Build
on:
on:
push:
paths-ignore:
- 'android/**'
Expand All @@ -9,21 +9,21 @@ on:
- 'android/**'
- 'apidoc/**'
workflow_dispatch:

jobs:
ios:
runs-on: macos-latest
name: iOS
env:
SDK_VERSION: 9.3.2.GA
SDK_VERSION: 11.0.0.GA
MODULE_ID: ti.barcode
steps:
- uses: actions/checkout@v2

- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'

- name: Cache Node.js modules
id: node-cache
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: JavaScript Lint
on:
on:
push:
paths:
- '**.js'
Expand All @@ -11,18 +11,18 @@ on:
- '**.json'
- '**.eslint*'
workflow_dispatch:

jobs:
js:
runs-on: ubuntu-latest
name: JavaScript
steps:
- uses: actions/checkout@v2

- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '14.x'

- name: Cache Node.js modules
id: node-cache
Expand Down
4 changes: 2 additions & 2 deletions ios/Classes/TiBarcodeModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ - (id)_initWithPageContext:(id<TiEvaluator>)context

- (NSNumber *)canShow:(id)unused
{
//TO DO: Remove
// TO DO: Remove
return NUMBOOL(YES);
}

Expand Down Expand Up @@ -561,7 +561,7 @@ - (void)cancelled
MAKE_SYSTEM_PROP(FORMAT_RSS_EXPANDED, kBarcodeFormatRSSExpanded);
MAKE_SYSTEM_PROP(FORMAT_UPC_A, kBarcodeFormatUPCA);
MAKE_SYSTEM_PROP(FORMAT_UPC_E, kBarcodeFormatUPCE);
//MAKE_SYSTEM_PROP(FORMAT_UPCEAN_EXTENSION, kBarcodeFormatUPCEANExtension); // extension, not a stand-alone
// MAKE_SYSTEM_PROP(FORMAT_UPCEAN_EXTENSION, kBarcodeFormatUPCEANExtension); // extension, not a stand-alone

MAKE_SYSTEM_PROP(UNKNOWN, 0);
MAKE_SYSTEM_PROP(URL, 1);
Expand Down
Loading

0 comments on commit c89ece1

Please sign in to comment.