Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
LINAGORA
L
LGS
Labs
voice-web
Commits
f2aa7022
Commit
f2aa7022
authored
May 15, 2017
by
Michael Henretty
Browse files
adding travis test
parent
078b81ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
.travis.yml
.travis.yml
+7
-0
gulpfile.js
gulpfile.js
+3
-1
No files found.
.travis.yml
0 → 100644
View file @
f2aa7022
language
:
node_js
node_js
:
-
"
7"
before_script
:
-
npm install -g gulp
script
:
-
gulp build
gulpfile.js
View file @
f2aa7022
...
...
@@ -56,6 +56,8 @@
.
pipe
(
gulp
.
dest
(
DIR_SERVER_JS
));
});
gulp
.
task
(
'
build
'
,
'
Build both server and client js
'
,
[
'
ts
'
,
'
ts-server
'
]);
gulp
.
task
(
'
npm-install
'
,
'
Install npm dependencies.
'
,
shell
.
task
([
'
npm install
'
]));
...
...
@@ -66,7 +68,7 @@
gulp
.
task
(
'
watch
'
,
'
Rebuild, rebundle, re-install on file changes.
'
,
watch
);
gulp
.
task
(
'
default
'
,
'
Running just `gulp`.
'
,
[
'
ts
'
,
'
ts-server
'
],
()
=>
{
gulp
.
task
(
'
default
'
,
'
Running just `gulp`.
'
,
[
'
build
'
],
()
=>
{
watch
();
listen
();
});
...
...
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