All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.Makefile Maven / Gradle / Ivy

Go to download

canihaz allows you to lazy install npm modules because not every dependency is needed.

The newest version!
ALL_TESTS = $(shell find test/ -name '*.test.js')
NPM_TARBALL = $(shell npm pack -q)

test:
	@tar -xvzf $(NPM_TARBALL)
	@mv ./package ./node_modules/canihaz
	@rm $(NPM_TARBALL)
	@./node_modules/.bin/mocha $(ALL_TESTS)
	@rm -rf ./node_modules
	@npm install .

.PHONY: test




© 2015 - 2024 Weber Informatics LLC | Privacy Policy