Skip to content

Commit

Permalink
Upgrade to version 1.0.8 and replace console.log with tl.debug
Browse files Browse the repository at this point in the history
- Updated version in multiple files to 1.0.8.
- Changed logging statements from console.log to tl.debug for better debug information.
  • Loading branch information
maksimu committed Sep 20, 2024
1 parent 72347ee commit 47b4db8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ declare global {

// Only add the polyfill if the method doesn't already exist
if (!Array.prototype.at) {
console.log("Array.prototype.at() is not supported in this environment. Adding polyfill.");
tl.debug("Array.prototype.at() is not supported in this environment. Adding polyfill.");
Array.prototype.at = function<T>(this: T[], index: number): T | undefined {
// Convert the index to an integer
const n = Math.trunc(index) || 0;
Expand All @@ -50,7 +50,7 @@ if (!Array.prototype.at) {
return this[n];
};
} else {
console.log("Array.prototype.at() is natively supported in this environment.");
tl.debug("Array.prototype.at() is natively supported in this environment.");
}

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "keeper-secrets-manager",
"version": "1.0.7",
"version": "1.0.8",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"version": {
"Major": 1,
"Minor": 0,
"Patch": 7
"Patch": 8
},
"instanceNameFormat": "KeeperSecretsManager",
"inputs": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "keeper-secrets-manager",
"version": "1.0.7",
"version": "1.0.8",
"publisher": "KeeperSecurity",
"name": "Keeper Secrets Manager",
"public": true,
Expand Down

0 comments on commit 47b4db8

Please sign in to comment.