We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a66b391 commit 0db846fCopy full SHA for 0db846f
node.gyp
@@ -859,6 +859,8 @@
859
'action_name': 'node_js2c',
860
'process_outputs_as_sources': 1,
861
'inputs': [
862
+ # Put the code first so it's a dependency and can be used for invocation.
863
+ 'tools/js2c.py',
864
'<@(library_files)',
865
'config.gypi',
866
'tools/js2c_macros/check_macros.py'
@@ -878,9 +880,8 @@
878
880
}]
879
881
],
882
'action': [
- 'python', 'tools/js2c.py',
- '<@(_outputs)',
883
- '<@(_inputs)',
+ 'python', '<@(_inputs)',
884
+ '--target', '<@(_outputs)',
885
886
},
887
0 commit comments