Skip to content

Commit

Permalink
Merge pull request #13 from Genymobile/node-16
Browse files Browse the repository at this point in the history
Node 16 support
  • Loading branch information
genygilles authored Jul 12, 2022
2 parents ce0bf42 + d7f88d7 commit a409e2c
Show file tree
Hide file tree
Showing 6 changed files with 2,788 additions and 2,926 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -29,4 +29,3 @@ jobs:
- run: yarn install
- run: yarn validate
- run: yarn test

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Build project
run: |
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const inject = require('gulp-inject');
const merge2 = require('merge2');
const minifyCss = require('gulp-clean-css');
const minifyHtml = require('gulp-htmlmin');
const sass = require('gulp-sass');
const sass = require('gulp-sass')(require('sass'));
const source = require('vinyl-source-stream');
const streamify = require('gulp-streamify');
const tap = require('gulp-tap');
Expand Down
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@genymotion/device-web-player",
"version": "1.4.4",
"version": "2.0.0",
"description": "Genymotion Virtual Device Web Player",
"main": "dist/js/gm-player.min.js",
"files": [
"dist"
],
"engines": {
"node": ">=12"
"node": ">=16"
},
"scripts": {
"test": "jest --config tests/config.js",
Expand All @@ -28,43 +28,44 @@
},
"homepage": "https://github.com/Genymobile/genymotion-device-web-player#readme",
"dependencies": {
"lodash": "^4.17.20",
"loglevel": "^1.7.0",
"webrtc-adapter": "^7.7.0"
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"webrtc-adapter": "^7.7.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.13",
"browser-sync": "^2.27.10",
"browserify": "^17.0.0",
"browserify-transform-tools": "^1.7.0",
"del": "^6.0.0",
"eslint": "^7.12.1",
"eslint-plugin-jest": "^24.1.0",
"del": "^6.1.1",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.7.0",
"estraverse-fb": "^1.3.2",
"grasp": "^0.6.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.0.0",
"gulp-connect": "^5.7.0",
"gulp-css-base64": "^2.0.0",
"gulp-html-to-js": "0.0.7",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-inject": "^5.0.5",
"gulp-sass": "^4.1.0",
"gulp-sass": "^5.1.0",
"gulp-streamify": "^1.0.2",
"gulp-tap": "^2.0.0",
"gulp-uglify-es": "^2.0.0",
"gulp-using": "^0.1.1",
"gulp-util": "^3.0.8",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-junit": "^12.3.0",
"merge2": "^1.4.1",
"sass": "^1.53.0",
"through2": "^4.0.2",
"vinyl": "^2.2.1",
"vinyl-source-stream": "^2.0.0"
Expand Down
Loading

0 comments on commit a409e2c

Please sign in to comment.