Skip to content

Commit

Permalink
fix: Fixed start with new version of puppetter (close #2079 (#2093)
Browse files Browse the repository at this point in the history
  • Loading branch information
icleitoncosta committed Mar 6, 2024
1 parent a06a786 commit 3c9d191
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
node-version: 18.x

- name: Get npm cache directory
id: npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
node-version: 18.x

- name: Get npm cache directory
id: npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
node-version: 18.x

- name: Get npm cache directory
id: npm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
node-version: 18.x

- name: Get npm cache directory
id: npm-cache
Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -125,6 +125,7 @@
"ws": "^8.16.0"
},
"optionalDependencies": {
"@img/sharp-win32-x64": "^0.33.2",
"fsevents": "^2.3.3"
},
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/config/create-config.ts
Expand Up @@ -25,7 +25,7 @@ export interface CreateConfig {
* Headless chrome
* @default true
*/
headless?: boolean;
headless?: boolean | 'shell';
/**
* Open devtools by default
* @default false
Expand Down

0 comments on commit 3c9d191

Please sign in to comment.