Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(dev): remove nsp since the project merged with npm
  • Loading branch information
retrohacker committed Jan 30, 2019
1 parent 3740a6b commit 1dc34b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
9 changes: 4 additions & 5 deletions Makefile
Expand Up @@ -19,7 +19,6 @@
#
ESLINT := ./node_modules/.bin/eslint
DOCUMENTATION := ./node_modules/.bin/documentation
NSP := ./node_modules/.bin/nsp
NODEUNIT := ./node_modules/.bin/nodeunit
MOCHA := ./node_modules/.bin/mocha
NODECOVER := ./node_modules/.bin/cover
Expand Down Expand Up @@ -63,10 +62,6 @@ test: $(NODEUNIT)
$(NODEUNIT) test/*.test.js
$(MOCHA) test/plugins/*.test.js

.PHONY: nsp
nsp: node_modules $(NSP)
@($(NSP) check) | true

.PHONY: docs-build
docs-build:
@($(NODE) $(DOCS_BUILD))
Expand All @@ -75,5 +70,9 @@ docs-build:
benchmark:
@(cd ./benchmark && $(NPM) i && $(NODE) index.js)

.PHONY: audit
audit:
@($(NPM) audit || true)

include ./tools/mk/Makefile.deps
include ./tools/mk/Makefile.targ
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -136,7 +136,6 @@
"mkdirp": "^0.5.1",
"mocha": "^3.5.3",
"nodeunit": "^0.11.2",
"nsp": "^2.8.1",
"ora": "^1.3.0",
"pre-commit": "^1.2.2",
"prettier": "1.16.1",
Expand Down
2 changes: 1 addition & 1 deletion tools/mk/Makefile.targ
Expand Up @@ -244,4 +244,4 @@ $(DOC_MEDIA_DIRS_BUILD):
test:

.PHONY: prepush
prepush: check test nsp
prepush: check test audit

0 comments on commit 1dc34b4

Please sign in to comment.