forked from enyo/opentip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.coffee
executable file
·88 lines (61 loc) · 2.56 KB
/
generate.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env coffee
fs = require "fs"
request = require "request"
uglifyJs2 = require "uglify-js2"
downloads =
jquery: [
"lib/opentip.js"
"lib/adapter.jquery.js"
]
prototype: [
"lib/opentip.js"
"lib/adapter.prototype.js"
]
native: [
"lib/opentip.js"
"lib/adapter.native.js"
]
header = """
// Opentip v2.2.7
// Copyright (c) 2009-2012
// www.opentip.org
// MIT Licensed
"""
# First download excanvas
console.log "Downloading excanvas"
request "https://raw.github.com/enyo/excanvas/master/index.js", (error, response, excanvas) ->
return console.error error unless !error and response.statusCode == 200
console.log "Downloading classList"
request "https://raw.github.com/eligrey/classList.js/master/classList.js", (error, response, classList) ->
return console.error error unless !error and response.statusCode == 200
console.log "Downloading addEventListener polyfill"
# request "https://gist.github.com/raw/4684074/e98964ff5aec0032cab344bd40c4f528dec7ac78/addEventListener-polyfill.js", (error, response, addEventListener) ->
request "https://gist.github.com/raw/4684216/c58a272ef9d9e0f55ea5e90ac313e3a3b2f2b7b3/eventListener.polyfill.js", (error, response, addEventListener) ->
return console.error error unless !error and response.statusCode == 200
saveFile = (originalDownloadName, contents, withExcanvas) ->
downloadName = originalDownloadName
console.log "Minfiying and saving#{if withExcanvas then " with excanvas" else ""}..."
if withExcanvas
contents += "\n\n" + excanvas
downloadName += "-excanvas"
if originalDownloadName == "native"
contents += "\n\n" + classList
contents += "\n\n" + addEventListener
targetFile = "#{__dirname}/opentip-#{downloadName}.js"
fs.writeFileSync targetFile, contents, "utf-8"
mergedMinified = header + uglifyJs2.minify(targetFile).code
targetFile = "#{__dirname}/opentip-#{downloadName}.min.js"
fs.writeFileSync targetFile, mergedMinified, "utf-8"
for downloadName, files of downloads
merged = []
console.log ""
console.log "Processing '#{downloadName}.js'"
for file in files
console.log "Adding '#{file}'."
merged.push fs.readFileSync "#{__dirname}/../#{file}", "utf-8"
merged = merged.join "\n\n"
saveFile downloadName, merged
saveFile downloadName, merged, yes
console.log "Done"
console.log ""
console.log ""