Skip to content

Commit

Permalink
chore: Replace fancy-log dependency with appium logger (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach authored Aug 2, 2024
1 parent 1795672 commit 015c47a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
},
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.0",
"@appium/support": "^5.1.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"android-apidemos": "^4.0.0",
"appium-adb": "^12.0.2",
"bluebird": "^3.7.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"fancy-log": "^2.0.0",
"semantic-release": "^24.0.0",
"semver": "^7.3.7"
}
Expand Down
7 changes: 4 additions & 3 deletions scripts/gradle-version-update.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const fs = require('fs');
const path = require('path');
const fs = require('node:fs');
const path = require('node:path');
const semver = require('semver');
const log = require('fancy-log');
const {logger} = require('@appium/support');

const log = logger.getLogger('Versioner');
const VERSION_NAME_PATTERN = /^\s*versionName\s+['"](.+)['"]$/gm;
const VERSION_CODE_PATTERN = /^\s*versionCode\s+(.+)$/gm;

Expand Down

0 comments on commit 015c47a

Please sign in to comment.