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 71bc2ef commit 7fccac4Copy full SHA for 7fccac4
tasks/javascript.js
@@ -154,6 +154,7 @@ function init() {
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
157
- ngAnnotate // @ngInject for angular injection points
+ !cliArgs.unminified && ngAnnotate // @ngInject for angular injection points
158
];
159
+ // TODO @bholloway fix sourcemaps in ngAnnotate so that it may be included even when not minifying
160
}
0 commit comments