Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mbalabash committed Feb 25, 2024
1 parent a008a7e commit 5a783db
Show file tree
Hide file tree
Showing 4 changed files with 619 additions and 477 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 3.0.2

- Upgraded dependencies.

## 3.0.1

- Upgraded project dependencies.
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "estimo",
"version": "3.0.1",
"version": "3.0.2",
"description": "Evaluates how long the browser will execute your javascript code",
"main": "index.js",
"types": "./index.d.ts",
Expand All @@ -20,26 +20,26 @@
},
"dependencies": {
"@sitespeed.io/tracium": "^0.3.3",
"commander": "^11.1.0",
"commander": "^12.0.0",
"find-chrome-bin": "2.0.1",
"nanoid": "5.0.4",
"puppeteer-core": "21.6.0"
"nanoid": "5.0.6",
"puppeteer-core": "22.2.0"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.2",
"ava": "6.0.0",
"eslint": "^8.55.0",
"ava": "6.1.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.2"
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "@logux/eslint-config",
Expand Down
3 changes: 2 additions & 1 deletion src/create-chrome-trace.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const defaultBrowserOptions = {

const chromeLaunchArgs = [
'--no-sandbox',
'--incognito',
'--disable-setuid-sandbox',
'--disable-dev-shm-usage'
]
Expand Down Expand Up @@ -81,7 +82,7 @@ export async function createChromeTrace(resources, browserOptions) {

try {
browser = await createBrowserEntity(options)
context = await browser.createIncognitoBrowserContext()
context = await browser.createBrowserContext()

for (let item of resources) {
page = await createPageEntity(context, options)
Expand Down
Loading

0 comments on commit 5a783db

Please sign in to comment.