node-atol-wrapper 0.0.20 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/nodejs.yml +19 -17
- package/.yarnrc +1 -0
- package/README.md +4 -2
- package/binding.gyp +1 -1
- package/bindings.d.ts +1679 -54
- package/bindings.js +1 -1
- package/package.json +2 -2
- package/src/index.cc +5 -1
- package/src/libfptr10.h +294 -1
- package/src/linux-armhf/libfptr10.so +0 -0
- package/src/linux-x64/libfptr10.so +0 -0
- package/src/linux-x86/libfptr10.so +0 -0
- package/src/macos-x86_64/fptr10.framework/Versions/A/Resources/Info.plist +41 -0
- package/src/macos-x86_64/fptr10.framework/Versions/A/fptr10 +0 -0
- package/src/win-x64/fptr10.dll +0 -0
- package/src/win-x64/fptr10.lib +0 -0
- package/src/win-x86/fptr10.dll +0 -0
- package/src/win-x86/fptr10.lib +0 -0
- package/.travis.yml +0 -49
- package/package-lock.json +0 -484
- package/scripts/build_against_node.sh +0 -7
- package/scripts/install_node.sh +0 -21
|
@@ -4,25 +4,27 @@ on: [push]
|
|
|
4
4
|
|
|
5
5
|
jobs:
|
|
6
6
|
build:
|
|
7
|
-
|
|
8
|
-
runs-on: [windows-latest]
|
|
7
|
+
runs-on: ${{ matrix.os }}
|
|
9
8
|
|
|
10
9
|
strategy:
|
|
11
10
|
matrix:
|
|
12
|
-
|
|
11
|
+
os: [windows-2019, ubuntu-latest, macos-latest]
|
|
12
|
+
node-version: [12, 14, 16]
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
15
|
+
- name: Checkout
|
|
16
|
+
uses: actions/checkout@v3
|
|
17
|
+
- if: matrix.os == 'windows-2019'
|
|
18
|
+
name: Choco install
|
|
19
|
+
uses: crazy-max/ghaction-chocolatey@v2
|
|
20
|
+
with:
|
|
21
|
+
args: install visualcpp-build-tools -y
|
|
22
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
23
|
+
uses: actions/setup-node@v3
|
|
24
|
+
with:
|
|
25
|
+
node-version: ${{ matrix.node-version }}
|
|
26
|
+
- name: npm install, build
|
|
27
|
+
run: |
|
|
28
|
+
npm install --build-from-source
|
|
29
|
+
env:
|
|
30
|
+
CI: true
|
package/.yarnrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
registry "https://registry.yarnpkg.com"
|
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
[](https://travis-ci.com/farafonov-alexey/node-atol-wrapper)
|
|
1
|
+
[](https://app.travis-ci.com/farafonov-alexey/node-atol-wrapper)
|
|
2
2
|
|
|
3
3
|
Название
|
|
4
4
|
=========
|
|
5
|
-
Node.js обертка для драйвера торгового оборудования (ДТО) версии 10 от компании [АТОЛ](https://www.atol.ru/)
|
|
5
|
+
Node.js обертка для драйвера торгового оборудования (ДТО) версии [10.9.3.1](http://fs.atol.ru/_layouts/15/atol.templates/Handlers/FileHandler.ashx?guid=9c00e55f-7cfe-4918-8702-8df7e5fca2ca&webUrl=) от компании [АТОЛ](https://www.atol.ru/)
|
|
6
|
+
|
|
7
|
+
[ Источник ](https://forum.atol.ru/lofiversion/index.php/t34345.html)
|
|
6
8
|
|
|
7
9
|
[Документация по интеграции](http://integration.atol.ru/)
|
|
8
10
|
|