Node-Red configuration
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Makefile 149B

1234567891011
  1. # Install node modules.
  2. node_modules: package.json
  3. @npm install
  4. # Run the tests.
  5. test:
  6. @./node_modules/.bin/mocha
  7. # Phony targets.
  8. .PHONY: test