Compare commits

...

4 Commits

Author SHA1 Message Date
243beb2c75 1.0.33 2021-11-07 18:50:23 +01:00
c6fd1bea7a fix(core): update 2021-11-07 18:50:22 +01:00
4f94fa31ac 1.0.32 2021-11-07 18:38:16 +01:00
ac61d8ff4d fix(core): update 2021-11-07 18:38:15 +01:00
4 changed files with 4 additions and 5 deletions

View File

@@ -12,7 +12,6 @@ stages:
testStable:
stage: only
script:
- whereis google-chrome
- npmci npm prepare
- npmci node install stable
- npmci npm install

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@pushrocks/smartpuppeteer",
"version": "1.0.31",
"version": "1.0.33",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@pushrocks/smartpuppeteer",
"version": "1.0.31",
"version": "1.0.33",
"license": "MIT",
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",

View File

@@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartpuppeteer",
"version": "1.0.31",
"version": "1.0.33",
"private": false,
"description": "simplified access to puppeteer",
"main": "dist_ts/index.js",

View File

@@ -27,7 +27,7 @@ export const getEnvAwareBrowserInstance = async (
args: chromeArgs,
pipe: true,
headless: true,
executablePath: '/bin/chrome'
// executablePath: '/usr/bin/google-chrome'
});
return headlessBrowser;