Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.

chore(deps): bump @babel/runtime from 7.26.0 to 7.27.0 in /packages/parrot-server #290

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 36 additions & 18 deletions packages/parrot-server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.


Unchanged files with check annotations Beta

.then(uploadResponse => {
// Response is a Resource Representation
// https://developer.chrome.com/webstore/webstore_api/items#resource
console.log(uploadResponse);

Check warning on line 25 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 16.x

Unexpected console statement

Check warning on line 25 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 18.x

Unexpected console statement
webStore
.publish(target, token)
.then(publishResponse => {
// Response is documented here:
// https://developer.chrome.com/webstore/webstore_api/items/publish
console.log(publishResponse);

Check warning on line 32 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 16.x

Unexpected console statement

Check warning on line 32 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 18.x

Unexpected console statement
})
.catch(publishError =>
console.error(`There was an issue publishing the extension: ${publishError}`)

Check warning on line 35 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 16.x

Unexpected console statement

Check warning on line 35 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 18.x

Unexpected console statement
);
})
.catch(uploadError =>
console.error(`There was an issue uploading the zip file: ${uploadError}`)

Check warning on line 39 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 16.x

Unexpected console statement

Check warning on line 39 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 18.x

Unexpected console statement
);
})
.catch(fetchTokenError =>
console.error(`There was an issue fetching the token: ${fetchTokenError}`)

Check warning on line 43 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 16.x

Unexpected console statement

Check warning on line 43 in packages/parrot-devtools/scripts/deploy-to-webstore.js

GitHub Actions / Node 18.x

Unexpected console statement
);