mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 15:48:11 -05:00
Deprecate coco-brunch and coco-dev-server in favor of npm scripts
This commit is contained in:
parent
8cde8b2c20
commit
19185db63e
2 changed files with 12 additions and 28 deletions
|
@ -1,17 +1,6 @@
|
|||
#!/usr/bin/python
|
||||
from subprocess import call
|
||||
import subprocess
|
||||
import os
|
||||
import time
|
||||
import sys
|
||||
#TODO: Upgrade this so it works on windows
|
||||
#These scripts will be placed in coco/bin
|
||||
current_directory = os.path.dirname(os.path.realpath(sys.argv[0]))
|
||||
coco_path = os.getenv("COCO_DIR",os.path.join(current_directory,os.pardir))
|
||||
brunch_path = coco_path + os.sep + "node_modules" + os.sep + ".bin" + os.sep + "brunch"
|
||||
subprocess.Popen("ulimit -n 10000", shell=True)
|
||||
while True:
|
||||
print("Starting brunch. After the first compile, it'll keep running and watch for changes.")
|
||||
call(brunch_path + " w",shell=True,cwd=coco_path)
|
||||
print("Brunch crashed. Press control+C within 1 second to quit.")
|
||||
time.sleep(1)
|
||||
echo
|
||||
echo "coco-brunch is deprecated." Instead, use:
|
||||
echo
|
||||
echo "\"npm run brunch watch\" to run just brunch, or"
|
||||
echo "\"npm run dev\" to run brunch and node in one terminal."
|
||||
echo
|
|
@ -1,11 +1,6 @@
|
|||
#!/usr/bin/python
|
||||
from subprocess import call
|
||||
import os
|
||||
import sys
|
||||
#TODO: Upgrade this so it works on windows
|
||||
#These scripts will be placed in coco/bin
|
||||
current_directory = os.path.dirname(os.path.realpath(sys.argv[0]))
|
||||
coco_path = os.getenv("COCO_DIR",os.path.join(current_directory,os.pardir))
|
||||
nodemon_path = coco_path + os.sep + "node_modules" + os.sep + ".bin" + os.sep + "nodemon"
|
||||
|
||||
call(nodemon_path + " . --ext \".coffee|.js\" --watch server --watch server_config.js --watch server_setup.coffee --watch app" + os.sep + "schemas",shell=True,cwd=coco_path)
|
||||
echo
|
||||
echo "coco-dev-server is deprecated." Instead, use:
|
||||
echo
|
||||
echo "\"npm run nodemon\" to run just node, or"
|
||||
echo "\"npm run dev\" to run brunch and node in one terminal."
|
||||
echo
|
Loading…
Reference in a new issue