FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vim-php.github.com/Gruntfile.js at master · sica07/vim-php.github.com · GitHub
sica07
/
vim-php.github.com
Public
forked from
vim-php/vim-php.github.com
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
vim-php.github.com
/
Gruntfile.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
36 lines (32 loc) · 923 Bytes
Breadcrumbs
vim-php.github.com
/
Gruntfile.js
Copy path
File metadata and controls
36 lines (32 loc) · 923 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
24
25
26
27
28
29
30
31
32
33
34
35
36
module
.
exports
=
function
(
grunt
)
{
'use strict'
;
grunt
.
file
.
mkdir
(
'vendor/js'
)
;
grunt
.
file
.
mkdir
(
'vendor/css'
)
;
grunt
.
initConfig
(
{
clean
:
{
test
:
[
'vendor'
]
}
,
copy
:
{
bootstraJs
:
{
src
:
'bower_components/bootstrap/dist/js/bootstrap.js'
,
dest
:
"vendor/js/bootstrap.js"
}
,
jquery
:
{
src
:
'bower_components/jquery/dist/js/jquery.js'
,
dest
:
"vendor/js/jquery.js"
}
,
bootstrapCss
:
{
src
:
'bower_components/bootstrap/dist/css/bootstrap.css'
,
dest
:
"vendor/css/bootstrap.css"
}
,
bootstrapThemeCss
:
{
src
:
'bower_components/bootstrap/dist/css/bootstrap-theme.css'
,
dest
:
"vendor/css/bootstrap-theme.css"
}
}
}
)
;
grunt
.
loadTasks
(
'tasks'
)
;
grunt
.
loadNpmTasks
(
'grunt-contrib-clean'
)
;
grunt
.
loadNpmTasks
(
'grunt-contrib-copy'
)
;
grunt
.
registerTask
(
'build'
,
[
'clean'
,
'copy'
]
)
;
}
;
Back
|
FazBrowse Home
|
New Git URL