[U] Scripts
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Stop on error
|
||||
set -e
|
||||
|
||||
# Check if package.json is present
|
||||
[[ ! -f "package.json" ]] && echo "package.json not found, please make sure you're in the correct path" && exit -1
|
||||
|
||||
# Deploy npm
|
||||
npm publish
|
||||
Reference in New Issue
Block a user