Skip to content

Commit 5608bbe

Browse files
committed
Update header
- remove version - mention that this is a fork
1 parent cc78df6 commit 5608bbe

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Gruntfile.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
"use strict";
22

33
module.exports = function(grunt) {
4-
var version = require("./package.json").version;
5-
64
grunt.initConfig({
75
browserify: {
86
all: {
@@ -21,15 +19,15 @@ module.exports = function(grunt) {
2119
},
2220
builtins: false
2321
},
24-
banner: grunt.file.read("lib/license_header.js").replace(/__VERSION__/, version)
22+
banner: grunt.file.read("lib/license_header.js")
2523
}
2624
}
2725
},
2826
uglify: {
2927
options: {
3028
mangle: true,
3129
preserveComments: false,
32-
banner: grunt.file.read("lib/license_header.js").replace(/__VERSION__/, version)
30+
banner: grunt.file.read("lib/license_header.js")
3331
},
3432
all: {
3533
src: "dist/jszip.js",

lib/license_header.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
3-
JSZip v__VERSION__ - A JavaScript class for generating and reading zip files
4-
<http://stuartk.com/jszip>
2+
JSZip - JavaScript class for generating and reading zip files
3+
Original by Stuart Knightley <https://stuartk.com/jszip>
4+
This version is the TurboWarp fork <https://github.com/TurboWarp/jszip>
55
66
(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
77
Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/main/LICENSE.markdown.

0 commit comments

Comments
 (0)