FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
angular-google-maps/gulpfile.js at scaleControl · usecode/angular-google-maps · GitHub
usecode
/
angular-google-maps
Public
forked from
sebholstein/angular-google-maps
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
angular-google-maps
/
gulpfile.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (19 loc) · 643 Bytes
Breadcrumbs
angular-google-maps
/
gulpfile.js
Copy path
File metadata and controls
23 lines (19 loc) · 643 Bytes
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
// load all files in gulp dir
require
(
'require-dir'
)
(
'./gulp'
)
;
const
gulp
=
require
(
'gulp'
)
;
const
runSequence
=
require
(
'run-sequence'
)
;
// all grunt tasks, which are defined here, are intended for use via the CLI.
gulp
.
task
(
'build'
,
(
done
)
=>
{
runSequence
(
[
'clean:dist'
,
'clean:tmp'
]
,
'lint'
,
[
'copyReleaseAssets'
,
'scripts'
,
'bundle'
]
,
'createPackageJson'
,
done
)
;
}
)
;
gulp
.
task
(
'serve'
,
[
'connect'
,
'watch:srcFiles'
]
)
;
gulp
.
task
(
'test'
,
(
done
)
=>
{
runSequence
(
'clean:test'
,
'scripts:test'
,
'karma'
,
done
)
;
}
)
;
gulp
.
task
(
'test:watch'
,
[
'scripts:test'
,
'watch:testfiles'
,
'watch:srcFiles'
,
'karma:watch'
]
)
;
Back
|
FazBrowse Home
|
New Git URL