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 6ab33ee commit 167e69fCopy full SHA for 167e69f
1 file changed
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: setup install dev test build publish clean lint format doctor build-node run-node doctor-node
+.PHONY: setup install dev test build publish clean lint format doctor build-node build-binaries run-node doctor-node
2
3
setup: install dev
4
@@ -32,6 +32,9 @@ doctor:
32
build-node:
33
cd node_version && npm install && npm run build
34
35
+build-binaries:
36
+ python scripts/build_pyinstaller.py
37
+
38
run-node:
39
node node_version/dist/cli.js facebook/react
40
@@ -40,4 +43,6 @@ doctor-node:
43
41
44
clean:
42
45
rm -rf dist build *.egg-info
- rm -rf node_version/dist node_version/node_modules
46
+ rm -rf __pycache__ explain_this_repo/__pycache__
47
+ rm -rf node_version/dist node_version/node_modules
48
+ rm -f node_version/*.tgz *.tgz
0 commit comments