We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c12b8b7 commit 15b1bc9Copy full SHA for 15b1bc9
scripts/package-name.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+echo $(cat ${1:-package.json} \
4
+ | grep name \
5
+ | head -1 \
6
+ | awk -F: '{ print $2 }' \
7
+ | sed 's/[",]//g')
scripts/package-version.sh
+ | grep version \
0 commit comments