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 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
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "appium"
6
6
  ],
7
- "version": "12.1.7",
7
+ "version": "12.1.8",
8
8
  "author": "Appium Contributors",
9
9
  "license": "Apache-2.0",
10
10
  "repository": {
@@ -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, fileFilter = () => true) {
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
- })).filter(fileFilter);
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, '_');