js-jquery/js-jquery-disable-gzip-js.patch

30 lines
844 B
Diff
Raw Normal View History

2022-07-04 15:03:44 +08:00
From da2978fde58fb84175ae0b9b7a83c963430a7747 Mon Sep 17 00:00:00 2001
From: Stephen Gallagher <sgallagh@redhat.com>
Date: Mon, 13 Apr 2020 14:04:00 -0400
Subject: [PATCH] Disable gzip-js
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
---
Gruntfile.js | 1 -
1 file changed, 1 deletion(-)
2019-12-16 09:59:25 +08:00
diff --git a/Gruntfile.js b/Gruntfile.js
2022-07-04 15:03:44 +08:00
index 486a0f303932734b868b065d3c7b99a36002fac5..5ff8cdec4810d0cdf2180da2f4432020f91e6b10 100644
2019-12-16 09:59:25 +08:00
--- a/Gruntfile.js
+++ b/Gruntfile.js
2022-07-04 15:03:44 +08:00
@@ -11,11 +11,10 @@ module.exports = function( grunt ) {
} catch ( e ) {}
return data;
2019-12-16 09:59:25 +08:00
}
2020-09-02 14:38:57 +08:00
var fs = require( "fs" ),
- gzip = require( "gzip-js" ),
isTravis = process.env.TRAVIS,
travisBrowsers = process.env.BROWSERS && process.env.BROWSERS.split( "," );
2019-12-16 09:59:25 +08:00
2022-07-04 15:03:44 +08:00
if ( !grunt.option( "filename" ) ) {
grunt.option( "filename", "jquery.js" );
2020-09-02 14:38:57 +08:00
--
2022-07-04 15:03:44 +08:00
2.26.0
2020-09-02 14:38:57 +08:00