FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sqlopsstudio/gulpfile.js at master · SQL-Server-projects/sqlopsstudio · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
SQL-Server-projects
/
sqlopsstudio
Public
forked from
microsoft/azuredatastudio
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
sqlopsstudio
/
gulpfile.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
77 lines (63 loc) · 2.69 KB
Breadcrumbs
sqlopsstudio
/
gulpfile.js
Copy path
File metadata and controls
77 lines (63 loc) · 2.69 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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict'
;
// Increase max listeners for event emitters
require
(
'events'
)
.
EventEmitter
.
defaultMaxListeners
=
100
;
const
gulp
=
require
(
'gulp'
)
;
const
util
=
require
(
'./build/lib/util'
)
;
const
path
=
require
(
'path'
)
;
const
compilation
=
require
(
'./build/lib/compilation'
)
;
// Fast compile for development time
gulp
.
task
(
'clean-client'
,
util
.
rimraf
(
'out'
)
)
;
gulp
.
task
(
'compile-client'
,
[
'clean-client'
]
,
compilation
.
compileTask
(
'out'
,
false
)
)
;
gulp
.
task
(
'watch-client'
,
[
'clean-client'
]
,
compilation
.
watchTask
(
'out'
,
false
)
)
;
// Full compile, including nls and inline sources in sourcemaps, for build
gulp
.
task
(
'clean-client-build'
,
util
.
rimraf
(
'out-build'
)
)
;
gulp
.
task
(
'compile-client-build'
,
[
'clean-client-build'
]
,
compilation
.
compileTask
(
'out-build'
,
true
)
)
;
gulp
.
task
(
'watch-client-build'
,
[
'clean-client-build'
]
,
compilation
.
watchTask
(
'out-build'
,
true
)
)
;
// Default
gulp
.
task
(
'default'
,
[
'compile'
]
)
;
// All
gulp
.
task
(
'clean'
,
[
'clean-client'
,
'clean-extensions'
]
)
;
gulp
.
task
(
'compile'
,
[
'compile-client'
,
'compile-extensions'
]
)
;
gulp
.
task
(
'watch'
,
[
'watch-client'
,
'watch-extensions'
]
)
;
// All Build
gulp
.
task
(
'clean-build'
,
[
'clean-client-build'
,
'clean-extensions-build'
]
)
;
gulp
.
task
(
'compile-build'
,
[
'compile-client-build'
,
'compile-extensions-build'
]
)
;
gulp
.
task
(
'watch-build'
,
[
'watch-client-build'
,
'watch-extensions-build'
]
)
;
var
ALL_EDITOR_TASKS
=
[
// Always defined tasks
'clean-client'
,
'compile-client'
,
'watch-client'
,
'clean-client-build'
,
'compile-client-build'
,
'watch-client-build'
,
// Editor tasks (defined in gulpfile.editor)
'clean-optimized-editor'
,
'optimize-editor'
,
'clean-minified-editor'
,
'minify-editor'
,
'clean-editor-distro'
,
'editor-distro'
,
'analyze-editor-distro'
,
// hygiene tasks
'tslint'
,
'hygiene'
,
]
;
var
runningEditorTasks
=
process
.
argv
.
length
>
2
&&
process
.
argv
.
slice
(
2
)
.
every
(
function
(
arg
)
{
return
(
ALL_EDITOR_TASKS
.
indexOf
(
arg
)
!==
-
1
)
;
}
)
;
process
.
on
(
'unhandledRejection'
,
(
reason
,
p
)
=>
{
console
.
log
(
'Unhandled Rejection at: Promise'
,
p
,
'reason:'
,
reason
)
;
process
.
exit
(
1
)
;
}
)
;
if
(
runningEditorTasks
)
{
require
(
`./build/gulpfile.editor`
)
;
require
(
`./build/gulpfile.hygiene`
)
;
}
else
{
// Load all the gulpfiles only if running tasks other than the editor tasks
const
build
=
path
.
join
(
__dirname
,
'build'
)
;
require
(
'glob'
)
.
sync
(
'gulpfile.*.js'
,
{
cwd
:
build
}
)
.
forEach
(
f
=>
require
(
`./build/
${
f
}
`
)
)
;
}
Back
|
FazBrowse Home
|
New Git URL