We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ab5ade commit 3b344dbCopy full SHA for 3b344db
tasks/javascript.js
@@ -153,8 +153,9 @@ function init() {
153
cliArgs = cliArgs || yargs.resolveArgv();
154
transforms = [
155
to5ify.configure({ ignoreRegex: /(?!)/ }), // convert any es6 to es5 (ignoreRegex is degenerate)
156
- stringify({ minify: true }), // allow import of html to a string
+ stringify({ minify: false }), // allow import of html to a string
157
!cliArgs.unminified && ngAnnotate, { sourcemap: true } // @ngInject for angular injection points
158
];
159
+ // TODO @bholloway fix stringify({ minify: true }) throwing error on badly formed html so that we can minify
160
// TODO @bholloway fix sourcemaps in ngAnnotate so that it may be included even when not minifying
161
}
0 commit comments