Skip to content

Commit

Permalink
fix #110 - fix windows support (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr authored Jul 14, 2021
1 parent ca6a8e6 commit 25d087e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [6.x, 8.x, 10.x, 12.x, 14.x, 16.x]

steps:
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "squiss-ts",
"version": "4.2.0",
"version": "4.2.1",
"description": "High-volume SQS poller",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^6 || ^8 || ^10 || ^12 || ^14 || ^16"
},
"scripts": {
"postinstall": "node -e 'const semver = require(\"semver\");process.exit(semver.lt(process.version, \"10.16.0\"));' || npm install --no-save [email protected]",
"postinstall": "node -e \"const semver = require('semver');process.exit(semver.lt(process.version, '10.16.0'));\" || npm install --no-save [email protected]",
"clean": "rm -rf node_modules build coverage dist",
"build": "npm run lint && npm run buildDist",
"buildDist": "rm -rf dist/* && ./node_modules/.bin/tsc",
"build": "npm run lint && npm run compile",
"compile": "tsc",
"test": "npm run lint && npm run mocha",
"mocha": "node --preserve-symlinks -r source-map-support/register node_modules/mocha/bin/_mocha --opts src/test/mocha.opts",
"cover": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
"mocha": "_mocha --opts src/test/mocha.opts",
"cover": "nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "tslint -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\""
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 25d087e

Please sign in to comment.