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.
@@ -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
- node-version: [8.x, 10.x, 12.x]
11
+ os: [windows-2019, ubuntu-latest, macos-latest]
12
+ node-version: [12, 14, 16]
13
13
 
14
14
  steps:
15
- - uses: actions/checkout@v1
16
- - name: Use Node.js ${{ matrix.node-version }}
17
- uses: actions/setup-node@v1
18
- with:
19
- node-version: ${{ matrix.node-version }}
20
- - name: npm install, build
21
- run: |
22
- npm --vs2015 install --global windows-build-tools
23
- python --version
24
- npm config set python python2.7
25
- npm config set msvs_version 2015
26
- npm install --build-from-source
27
- env:
28
- CI: true
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
- [![Build Status](https://travis-ci.com/farafonov-alexey/node-atol-wrapper.svg?branch=master)](https://travis-ci.com/farafonov-alexey/node-atol-wrapper)
1
+ [![Build Status](https://travis-ci.com/farafonov-alexey/node-atol-wrapper.svg?branch=master)](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
 
package/binding.gyp CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "variables": {
3
- 'arch': '<!(node -e "console.log(process.arch)")'
3
+ 'arch': '<(target_arch)'
4
4
  },
5
5
  "targets": [
6
6
  {