appium-remote-debugger 12.1.7 → 12.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/scripts/common.mjs +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [12.1.8](https://github.com/appium/appium-remote-debugger/compare/v12.1.7...v12.1.8) (2025-03-04)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* Remove obsolete linter config ([#415](https://github.com/appium/appium-remote-debugger/issues/415)) ([a20a743](https://github.com/appium/appium-remote-debugger/commit/a20a74324259fb24d296eb56fe20af2b4cc0b96c))
|
|
6
|
+
* remove unused arg ([#414](https://github.com/appium/appium-remote-debugger/issues/414)) ([7a5f1b1](https://github.com/appium/appium-remote-debugger/commit/7a5f1b11bd2e9f56ec92c6b6825566324c8edb44))
|
|
7
|
+
|
|
1
8
|
## [12.1.7](https://github.com/appium/appium-remote-debugger/compare/v12.1.6...v12.1.7) (2025-03-04)
|
|
2
9
|
|
|
3
10
|
### Bug Fixes
|
package/package.json
CHANGED
package/scripts/common.mjs
CHANGED
|
@@ -141,15 +141,14 @@ async function atomsBuild () {
|
|
|
141
141
|
/**
|
|
142
142
|
* Copy atoms in bazel built result to 'atoms' in this repository's main 'atoms' place.
|
|
143
143
|
* @param {string} atomsDir
|
|
144
|
-
* @param {Function} fileFilter
|
|
145
144
|
*/
|
|
146
|
-
async function atomsCopyAtoms (atomsDir
|
|
145
|
+
async function atomsCopyAtoms (atomsDir) {
|
|
147
146
|
log.info(`Copying any atoms found in ${atomsDir} to atoms dir`);
|
|
148
147
|
const filesToCopy = (await glob('**/*-ios.js', {
|
|
149
148
|
absolute: true,
|
|
150
149
|
strict: false,
|
|
151
150
|
cwd: atomsDir,
|
|
152
|
-
}))
|
|
151
|
+
}));
|
|
153
152
|
for (const file of filesToCopy) {
|
|
154
153
|
// convert - to _ for backwards compatibility with old atoms
|
|
155
154
|
const newFileName = path.basename(file).replace('-ios', '').replace(/-/g, '_');
|