frida 16.7.15 → 16.7.16

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.
@@ -6,7 +6,7 @@ const { inspect } = util;
6
6
  const binding = bindings({
7
7
  bindings: "frida_binding",
8
8
  try: [
9
- ["module_root", "bindings"],
9
+ ["module_root", "build", "bindings"],
10
10
  [process.cwd(), "bindings"],
11
11
  ]
12
12
  });
package/meson.build CHANGED
@@ -84,19 +84,7 @@ frida_core_dep = dependency('frida-core-1.0', default_options: [
84
84
 
85
85
  pkg_install_dir = get_option('libdir') / 'node_modules' / 'frida'
86
86
 
87
- package_json = custom_target('package.json',
88
- input: 'package.json',
89
- output: 'package.json',
90
- command: [
91
- python,
92
- files('scripts' / 'adjust-version.py'),
93
- version,
94
- '@INPUT@',
95
- '@OUTPUT@',
96
- ],
97
- install: true,
98
- install_dir: pkg_install_dir,
99
- )
87
+ package_json = files('package.json')
100
88
  tsconfig_json = files('tsconfig.json')
101
89
 
102
90
  subdir('src')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida",
3
- "version": "16.7.15",
3
+ "version": "16.7.16",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
@@ -0,0 +1,13 @@
1
+ adjusted_package_json = custom_target('package.json',
2
+ input: package_json,
3
+ output: 'package.json',
4
+ command: [
5
+ python,
6
+ files('adjust-version.py'),
7
+ version,
8
+ '@INPUT@',
9
+ '@OUTPUT@',
10
+ ],
11
+ install: true,
12
+ install_dir: pkg_install_dir,
13
+ )
@@ -57,7 +57,7 @@ def generate_ts(model: Model) -> str:
57
57
  const binding: FridaBinding = bindings({
58
58
  bindings: "frida_binding",
59
59
  try: [
60
- ["module_root", "bindings"],
60
+ ["module_root", "build", "bindings"],
61
61
  [process.cwd(), "bindings"],
62
62
  ]
63
63
  });"""
package/src/meson.build CHANGED
@@ -1,3 +1,5 @@
1
+ subdir('assets')
2
+
1
3
  if frida_core_dep.type_name() == 'internal'
2
4
  frida_core_subprj = subproject('frida-core')
3
5
  frida_gir = frida_core_subprj.get_variable('core_public_gir')
@@ -78,7 +80,7 @@ custom_target('js',
78
80
  '@OUTDIR@',
79
81
  '@PRIVATE_DIR@',
80
82
  npm,
81
- package_json,
83
+ adjusted_package_json,
82
84
  tsconfig_json,
83
85
  '@INPUT@',
84
86
  ],
@@ -1,6 +1,6 @@
1
1
  [wrap-git]
2
2
  url = https://github.com/frida/frida-core.git
3
- revision = 16.7.15
3
+ revision = 16.7.16
4
4
  depth = 1
5
5
 
6
6
  [provide]
File without changes