Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
masonstrap
Commits
95d2afdb
Verified
Commit
95d2afdb
authored
Sep 19, 2017
by
David Haynes
🙆
Browse files
Test CI build w/ gulp
parent
7383ec61
Pipeline
#1584
passed with stage
in 38 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
95d2afdb
...
...
@@ -4,3 +4,9 @@ build:
stage
:
build
script
:
-
yarn
-
npm install -g gulp
-
gulp build
artifacts
:
paths
:
-
build/js
-
build/css
gulpfile.js
View file @
95d2afdb
/*
"scripts": {
"copy-fonts": "cp -r ./node_modules/font-awesome/fonts/ ./public/assets/",
"http": "http-server -r -p 8000",
"dev": "npm-run-all --parallel build-masonstrap start http"
},
*/
// Gulp Imports
const
gulp
=
require
(
'
gulp
'
);
const
sass
=
require
(
'
gulp-sass
'
);
...
...
@@ -70,6 +62,7 @@ gulp.task('watch', () => {
gulp
.
watch
(
src
+
'
/js/*.js
'
,
[
'
js
'
])
});
// LiveReload dev server
gulp
.
task
(
'
http
'
,
()
=>
{
connect
.
server
({
root
:
'
./build/
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment