Rework npm commands to increase windows compat (#82)

* Rework npm commands to increase windows compat

* Test up to node 12
This commit is contained in:
Dan Mindru 2020-06-10 11:33:50 +02:00 committed by GitHub
parent 6da4298b1f
commit ba355c2c78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 11 deletions

View File

@ -9,9 +9,8 @@ jobs:
strategy:
matrix:
node_version: [10, 11, 12, 13]
os: [ubuntu-latest, macOS-latest]
# os: [ubuntu-latest, windows-latest, macOS-latest]
node_version: [10, 11, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "responsive-html-email-signature",
"version": "6.0.0",
"version": "6.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "responsive-html-email-signature",
"version": "6.0.0",
"version": "6.0.1",
"description": "Responsive template for emails & email signatures.",
"main": "index.js",
"repository": {
@ -23,13 +23,15 @@
},
"homepage": "https://github.com/danmindru/responsive-html-email-signature#readme",
"scripts": {
"start": "node ./node_modules/.bin/gulp",
"once": "node ./node_modules/.bin/gulp run-pipeline",
"start": "./node_modules/.bin/gulp",
"once": "./node_modules/.bin/gulp run-pipeline",
"deploy": "npm run test && cp -r dist demo && git push origin `git subtree split --prefix demo develop`:gh-pages --force",
"test": "npm run once && node ./node_modules/.bin/ava",
"test:watch": "npm run once && node ./node_modules/.bin/ava --watch",
"format": "node ./node_modules/.bin/prettier {tasks,tests}/**/*.js gulpfile.js .eslintrc.js --write",
"lint": "node ./node_modules/.bin/eslint ./**/*.js gulpfile.js"
"test": "npm run once && npm run _test",
"test:watch": "npm run once && npm run _test:watch",
"format": "./node_modules/.bin/prettier {tasks,tests}/**/*.js gulpfile.js .eslintrc.js --write",
"lint": "./node_modules/.bin/eslint ./**/*.js gulpfile.js",
"_test": "./node_modules/.bin/ava",
"_test:watch": "./node_modules/.bin/ava --watch"
},
"dependencies": {
"autoprefixer": "^9.6.1",