File: Makefile

package info (click to toggle)
node-stack-trace 0.0.10-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 80 kB
  • sloc: javascript: 119; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 108 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
SHELL := /bin/bash

test:
	@./test/run.js

release:
	git push
	git push --tags
	npm publish .

.PHONY: test