frida 16.2.3 → 16.2.5

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/lib/build.py CHANGED
@@ -5,12 +5,11 @@ import sys
5
5
 
6
6
 
7
7
  def main(argv: list[str]):
8
- outdir, privdir, npm, package_json, package_lock_json, tsconfig, \
9
- *sources = [Path(s) for s in argv[1:]]
8
+ outdir, privdir, npm, package_json, tsconfig, *sources = [Path(s) for s in argv[1:]]
10
9
 
11
10
  try:
12
11
  privdir.mkdir(exist_ok=True)
13
- for asset in [package_json, package_lock_json, tsconfig]:
12
+ for asset in [package_json, tsconfig]:
14
13
  shutil.copy(asset, privdir)
15
14
 
16
15
  libdir = privdir / "lib"
package/lib/meson.build CHANGED
@@ -44,7 +44,6 @@ custom_target('js',
44
44
  '@PRIVATE_DIR@',
45
45
  npm,
46
46
  package_json,
47
- package_lock_json,
48
47
  tsconfig_json,
49
48
  '@INPUT@',
50
49
  ],
package/meson.build CHANGED
@@ -154,7 +154,6 @@ package_json = custom_target('package.json',
154
154
  install: true,
155
155
  install_dir: pkg_install_dir,
156
156
  )
157
- package_lock_json = files('package-lock.json')
158
157
  tsconfig_json = files('tsconfig.json')
159
158
 
160
159
  subdir('lib')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida",
3
- "version": "16.2.3",
3
+ "version": "16.2.5",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
@@ -1,6 +1,6 @@
1
1
  [wrap-git]
2
2
  url = https://github.com/frida/frida-core.git
3
- revision = 16.2.3
3
+ revision = 16.2.5
4
4
  depth = 1
5
5
 
6
6
  [provide]