refactor: remove js2asar.py and port logic to JS in more readable / GN-style way (#16718)
* refactor: remove js2asar.py and port logic to JS in more readable / GN-style way * refactor: further clean up ASAR impl, add new node_action GN template
This commit is contained in:
parent
8582325e85
commit
b202ad1e24
9 changed files with 168 additions and 73 deletions
14
build/run-node.py
Normal file
14
build/run-node.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
|
||||
SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))
|
||||
|
||||
def main():
|
||||
# Proxy all args to node script
|
||||
script = os.path.join(SOURCE_ROOT, sys.argv[1])
|
||||
subprocess.check_call(['node', script] + [str(x) for x in sys.argv[2:]])
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main())
|
Loading…
Add table
Add a link
Reference in a new issue