-
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require Node.js 10 and upgrade to Puppeteer 3
- Loading branch information
1 parent
bfdc771
commit b397dbe
Showing
5 changed files
with
35 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
os: osx | ||
language: node_js | ||
node_js: | ||
- '12' | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
- '12' | ||
- '10' | ||
- '8' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,14 @@ | |
"description": "Capture screenshots of websites", | ||
"license": "MIT", | ||
"repository": "sindresorhus/capture-website", | ||
"funding": "https://github.com/sponsors/sindresorhus", | ||
"author": { | ||
"name": "Sindre Sorhus", | ||
"email": "[email protected]", | ||
"url": "sindresorhus.com" | ||
"url": "https://sindresorhus.com" | ||
}, | ||
"engines": { | ||
"node": ">=8" | ||
"node": ">=10" | ||
}, | ||
"scripts": { | ||
"test": "xo && ava && tsd" | ||
|
@@ -36,21 +37,26 @@ | |
], | ||
"dependencies": { | ||
"file-url": "^3.0.0", | ||
"puppeteer": "^2.0.0", | ||
"tough-cookie": "^3.0.1" | ||
"puppeteer": "^3.0.4", | ||
"tough-cookie": "^4.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/puppeteer": "^1.20.2", | ||
"@types/puppeteer": "^2.0.1", | ||
"ava": "^2.0.0", | ||
"create-test-server": "^3.0.1", | ||
"delay": "^4.1.0", | ||
"image-size": "^0.8.3", | ||
"is-jpg": "^2.0.0", | ||
"is-png": "^2.0.0", | ||
"pify": "^4.0.1", | ||
"png-js": "^0.1.1", | ||
"tempy": "^0.3.0", | ||
"tsd": "^0.10.0", | ||
"xo": "^0.25.3" | ||
"pify": "^5.0.0", | ||
"png-js": "^1.0.0", | ||
"tempy": "^0.5.0", | ||
"tsd": "^0.11.0", | ||
"xo": "^0.30.0" | ||
}, | ||
"xo": { | ||
"rules": { | ||
"@typescript-eslint/prefer-readonly-parameter-types": "off" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mean to test v14?