appmake 0.0.14 → 0.0.15
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/appmake.rb +1 -1
- metadata +1 -1
data/lib/appmake.rb
CHANGED
@@ -152,7 +152,7 @@ function buildModule() {
|
|
152
152
|
for (n in templates)
|
153
153
|
content.push('"' + n + '": ' + templates[n]);
|
154
154
|
|
155
|
-
return ['module.exports = {', content.join(','), '};'].join('').replace(/(
|
155
|
+
return ['module.exports = {', content.join(','), '};'].join('').replace(/(\\n|\\r|\\r\\n)/, '');
|
156
156
|
}
|
157
157
|
EOS
|
158
158
|
|