Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
added start script to electron demo #1200
Conversation
when I run the application without this line
"scripts": {
"start": "electron ."
},
it doesn't work and it gives me an error saying that the start script is missing.
|
The command is buried in the Makefile but it probably makes more sense as npm scripts .PHONY: run
run:
electron .There's a lint command that probably should also be added to the package.json: .PHONY: lint
lint:
eslint *.jsCan you also change the makefile so that it runs the npm script: .PHONY: lint
lint:
npm run lint
.PHONY: run
run:
npm startFinally, can you change the commit message to indicate that this is for the electron demo, something like "added start script to electron demo" |
when I run the application without this line
"scripts": {
"start": "electron ."
},
it doesn't work and it gives me an error saying that the start script is missing.