File: publish

package info (click to toggle)
node-gulp-sourcemaps 3.0.0%2B~cs4.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 812 kB
  • sloc: javascript: 3,584; sh: 15; makefile: 2
file content (13 lines) | stat: -rwxr-xr-x 190 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -e
set -o pipefail

echo 'Testing Package for publishing...'
./node_modules/.bin/tape ./test/publish.js

echo 'Attempting npm publish...'
npm publish

echo 'Success'

exit 0