Skip to content

Commit 46b0ce4

Browse files
author
benholloway
committed
Merge branch 'feature/0.4.1'
2 parents 02d6951 + d72eeb3 commit 46b0ce4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angularity",
33
"description": "An opinionated NodeJs build system for ECMAScript 6 AngularJs projects",
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"tags": [
66
"build",
77
"system",

tasks/javascript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function setUpTaskJavascript(context) {
212212
*/
213213
function getTransforms(isMinify) {
214214
return [
215-
babelify.configure({ignore: /(?!)/}), // convert any es6 to es5 (degenerate regex)
215+
babelify.configure({compact: false, ignore: /(?!)/}), // convert any es6 to es5 (degenerate regex)
216216
stringify({minify: false}), // allow import of html to a string
217217
ngInject({filter: /\.(?!json)\w+$/}), // annotate dependencies for angular (include all JS for consistency)
218218
isMinify && esmangleify() // minify

0 commit comments

Comments
 (0)