UNPKG

node-env-file

Version:

Parse and load environment files (containing ENV variable exports) into Node.js environment, i.e. `process.env`.

26 lines (16 loc) 376 B
#!/usr/bin/make -f MODULE_BIN := ./node_modules/.bin all: test-watch example: node ./examples/basic.js test: @ $(MODULE_BIN)/mocha ./test/index.js test-watch: @ $(MODULE_BIN)/mocha ./test/index.js --watch test-ci: @ $(MODULE_BIN)/mocha ./test/index.js --reporter dot --ignore-leaks install: npm install release: npm publish .PHONY: example test test-ci install