generator-reshow 0.17.39 → 0.17.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -24,6 +24,7 @@ else
|
|
|
24
24
|
if [ -z "$serverEnabled" ]; then
|
|
25
25
|
conf+='"indexTpl":"'${DIR}/index.tpl'",'
|
|
26
26
|
conf+='"indexHtml":"'${DIR}/index.html'",'
|
|
27
|
+
conf+='"bustMode":"name",'
|
|
27
28
|
fi
|
|
28
29
|
conf+='"swDest":"'${SWJS}'",'
|
|
29
30
|
# conf+='"swDebug":true,'
|
|
@@ -102,7 +103,7 @@ develop() {
|
|
|
102
103
|
stop
|
|
103
104
|
echo "Develop Mode"
|
|
104
105
|
npm run build
|
|
105
|
-
[ ! -z "$webpack" ] && CONFIG=$conf $webpack && [ ! -z "$serverEnabled" ] CONFIG=$conf $webpack $WEBPACK_SERVER_CONFIG
|
|
106
|
+
[ ! -z "$webpack" ] && CONFIG=$conf $webpack && [ ! -z "$serverEnabled" ] && CONFIG=$conf $webpack $WEBPACK_SERVER_CONFIG
|
|
106
107
|
}
|
|
107
108
|
|
|
108
109
|
watch() {
|
|
@@ -118,13 +119,18 @@ hot() {
|
|
|
118
119
|
}
|
|
119
120
|
|
|
120
121
|
nodeTest(){
|
|
121
|
-
|
|
122
|
+
theme=$1
|
|
123
|
+
if [ -z "$theme" ]; then
|
|
124
|
+
theme="Hello"
|
|
125
|
+
fi
|
|
126
|
+
echo "Theme Path: ${theme}"
|
|
127
|
+
echo '{"themePath":"'${theme}'"}' | node ./server.js
|
|
122
128
|
echo ""
|
|
123
129
|
}
|
|
124
130
|
|
|
125
131
|
case "$1" in
|
|
126
132
|
node)
|
|
127
|
-
nodeTest
|
|
133
|
+
nodeTest $2
|
|
128
134
|
;;
|
|
129
135
|
p)
|
|
130
136
|
production
|
package/package.json
CHANGED