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 9a0694e commit d4879b7Copy full SHA for d4879b7
sockpuppet/management/commands/initial_sockpuppet.py
@@ -10,7 +10,9 @@ class Command(BaseGenerateCommand):
10
help = "Generate scaffolding to compile javascript."
11
12
def handle(self, *args, **options):
13
+ init = 'npm init -y'
14
install = 'npm install -g add-project-script'
15
+ subprocess.check_call(init, shell=True)
16
subprocess.check_call(install, shell=True)
17
try:
18
build = 'add-project-script -n "build" -v "webpack --mode production"'
0 commit comments