From f0225e34e9b9eb6ff16f5c6f38aea039f63afe5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rouven=20We=C3=9Fling?= Date: Sat, 2 Aug 2014 17:44:41 +0200 Subject: [PATCH] feat(csp): Create a build of AngularJS that contains no CSS. This is useful for sites that use CSP, especially those that prohibit inline CSS but allow eval. --- Gruntfile.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index cc591e2e6f17..8520e72839a0 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -174,6 +174,10 @@ module.exports = function(grunt) { minify: true } }, + "angular-no-css": { + dest: 'build/angular-no-css.js', + src: util.wrap([files['angularSrc']], 'angular') + }, loader: { dest: 'build/angular-loader.js', src: util.wrap(files['angularLoader'], 'loader') @@ -216,6 +220,7 @@ module.exports = function(grunt) { min: { angular: 'build/angular.js', + "angular-no-css": 'build/angular-no-css.js', animate: 'build/angular-animate.js', cookies: 'build/angular-cookies.js', loader: 'build/angular-loader.js',