FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
mathjs/gulpfile.js at develop · intervalia/mathjs · GitHub
intervalia
/
mathjs
Public
forked from
josdejong/mathjs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
mathjs
/
gulpfile.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
214 lines (180 loc) · 5.18 KB
Breadcrumbs
mathjs
/
gulpfile.js
Copy path
File metadata and controls
214 lines (180 loc) · 5.18 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
//
@ts
-nocheck
const
fs
=
require
(
'fs'
)
const
path
=
require
(
'path'
)
const
gulp
=
require
(
'gulp'
)
const
gutil
=
require
(
'gulp-util'
)
const
webpack
=
require
(
'webpack'
)
const
babel
=
require
(
'gulp-babel'
)
const
uglify
=
require
(
'uglify-js'
)
const
docgenerator
=
require
(
'./tools/docgenerator'
)
const
validateAsciiChars
=
require
(
'./tools/validateAsciiChars'
)
const
ENTRY
=
'./src/main.js'
const
HEADER
=
'./src/header.js'
const
VERSION
=
'./src/version.js'
const
COMPILE_SRC
=
'./src/**/*.js'
const
COMPILE_LIB
=
'./lib'
const
FILE
=
'math.js'
const
FILE_MIN
=
'math.min.js'
const
FILE_MAP
=
'math.min.map'
const
DIST
=
path
.
join
(
__dirname
,
'/dist'
)
const
REF_SRC
=
'./lib/'
const
REF_DEST
=
'./docs/reference/functions'
const
REF_ROOT
=
'./docs/reference'
const
MATH_JS
=
DIST
+
'/'
+
FILE
// read the version number from package.json
function
getVersion
(
)
{
return
JSON
.
parse
(
String
(
fs
.
readFileSync
(
'./package.json'
)
)
)
.
version
}
// generate banner with today's date and correct version
function
createBanner
(
)
{
const
today
=
gutil
.
date
(
new
Date
(
)
,
'yyyy-mm-dd'
)
// today, formatted as yyyy-mm-dd
const
version
=
getVersion
(
)
return
String
(
fs
.
readFileSync
(
HEADER
)
)
.
replace
(
'@@date'
,
today
)
.
replace
(
'@@version'
,
version
)
}
// generate a js file containing the version number
function
updateVersionFile
(
)
{
const
version
=
getVersion
(
)
fs
.
writeFileSync
(
VERSION
,
'module.exports = \''
+
version
+
'\'\n'
+
'// Note: This file is automatically generated when building math.js.\n'
+
'// Changes made in this file will be overwritten.\n'
)
}
const
bannerPlugin
=
new
webpack
.
BannerPlugin
(
{
banner
:
createBanner
(
)
,
entryOnly
:
true
,
raw
:
true
}
)
const
webpackConfig
=
{
entry
:
ENTRY
,
output
:
{
library
:
'math'
,
libraryTarget
:
'umd'
,
path
:
DIST
,
globalObject
:
'this'
,
filename
:
FILE
}
,
externals
:
[
'crypto'
// is referenced by decimal.js
]
,
plugins
:
[
bannerPlugin
// new webpack.optimize.ModuleConcatenationPlugin()
// TODO: ModuleConcatenationPlugin seems not to work. https://medium.com/webpack/webpack-3-official-release-15fd2dd8f07b
]
,
module
:
{
rules
:
[
{
test
:
/
\.
j
s
$
/
,
exclude
:
/
n
o
d
e
_
m
o
d
u
l
e
s
/
,
use
:
'babel-loader'
}
]
}
,
optimization
:
{
minimize
:
false
}
,
cache
:
true
}
const
uglifyConfig
=
{
sourceMap
:
{
filename
:
FILE
,
url
:
FILE_MAP
}
,
output
:
{
comments
:
/
@
l
i
c
e
n
s
e
/
}
}
// create a single instance of the compiler to allow caching
const
compiler
=
webpack
(
webpackConfig
)
function
bundle
(
done
)
{
// update the banner contents (has a date in it which should stay up to date)
bannerPlugin
.
banner
=
createBanner
(
)
updateVersionFile
(
)
compiler
.
run
(
function
(
err
,
stats
)
{
if
(
err
)
{
gutil
.
log
(
err
)
}
gutil
.
log
(
'bundled '
+
MATH_JS
)
done
(
)
}
)
}
function
compile
(
)
{
return
gulp
.
src
(
COMPILE_SRC
)
.
pipe
(
babel
(
)
)
.
pipe
(
gulp
.
dest
(
COMPILE_LIB
)
)
}
function
minify
(
done
)
{
const
oldCwd
=
process
.
cwd
(
)
process
.
chdir
(
DIST
)
try
{
const
result
=
uglify
.
minify
(
{
'math.js'
:
fs
.
readFileSync
(
FILE
,
'utf8'
)
}
,
uglifyConfig
)
if
(
result
.
error
)
{
throw
result
.
error
}
fs
.
writeFileSync
(
FILE_MIN
,
result
.
code
)
fs
.
writeFileSync
(
FILE_MAP
,
result
.
map
)
gutil
.
log
(
'Minified '
+
FILE_MIN
)
gutil
.
log
(
'Mapped '
+
FILE_MAP
)
}
catch
(
e
)
{
throw
e
}
finally
{
process
.
chdir
(
oldCwd
)
}
done
(
)
}
function
validate
(
done
)
{
const
childProcess
=
require
(
'child_process'
)
// this is run in a separate process as the modules need to be reloaded
// with every validation (and required modules stay in cache).
childProcess
.
execFile
(
'node'
,
[
'./tools/validate'
]
,
function
(
err
,
stdout
,
stderr
)
{
if
(
err
instanceof
Error
)
{
throw
err
}
process
.
stdout
.
write
(
stdout
)
process
.
stderr
.
write
(
stderr
)
done
(
)
}
)
}
function
validateAscii
(
done
)
{
const
Reset
=
'\x1b[0m'
const
BgRed
=
'\x1b[41m'
validateAsciiChars
.
getAllFiles
(
'./src'
)
.
map
(
validateAsciiChars
.
validateChars
)
.
forEach
(
function
(
invalidChars
)
{
invalidChars
.
forEach
(
function
(
res
)
{
console
.
log
(
res
.
insideComment
?
''
:
BgRed
,
'file:'
,
res
.
filename
,
'ln:'
+
res
.
ln
,
'col:'
+
res
.
col
,
'inside comment:'
,
res
.
insideComment
,
'code:'
,
res
.
c
,
'character:'
,
String
.
fromCharCode
(
res
.
c
)
,
Reset
)
}
)
}
)
done
(
)
}
function
generateDocs
(
done
)
{
docgenerator
.
iteratePath
(
REF_SRC
,
REF_DEST
,
REF_ROOT
)
done
(
)
}
// check whether any of the source files contains non-ascii characters
gulp
.
task
(
'validate:ascii'
,
validateAscii
)
// The watch task (to automatically rebuild when the source code changes)
// Does only generate math.js, not the minified math.min.js
gulp
.
task
(
'watch'
,
function
watch
(
)
{
const
files
=
[
'package.json'
,
'index.js'
,
'src/**/*.js'
]
const
options
=
{
// ignore version.js else we get an infinite loop since it's updated during bundle
ignored
:
/
v
e
r
s
i
o
n
\.
j
s
/
,
ignoreInitial
:
false
,
delay
:
100
}
gulp
.
watch
(
files
,
options
,
gulp
.
parallel
(
bundle
,
compile
)
)
}
)
// The default task (called when you run `gulp`)
gulp
.
task
(
'default'
,
gulp
.
series
(
bundle
,
compile
,
minify
,
validate
,
generateDocs
)
)
Back
|
FazBrowse Home
|
New Git URL