Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pseuco
colored-petri-nets
Commits
cfa72a6a
Commit
cfa72a6a
authored
Mar 18, 2019
by
Felix Freiberger
Browse files
Allow watch task to start when there are build failures.
parent
7dea035a
Pipeline
#7006
passed with stages
in 1 minute and 26 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
cfa72a6a
...
...
@@ -2,7 +2,7 @@
This is a library to describe colored Petri nets and CPN++, an enhanced version of colored Petri nets for modeling programs.
© Felix Freiberger, 2018, Saarland University
© Felix Freiberger, 2018
-2019
, Saarland University
## A Word of Caution
...
...
gulpfile.js
View file @
cfa72a6a
...
...
@@ -64,8 +64,8 @@
var
defaultTask
=
gulp
.
series
(
lintAndBuild
,
test
);
exports
.
default
=
defaultTask
;
var
watch
=
gulp
.
series
(
defaultTask
,
function
()
{
gulp
.
watch
([
'
src/**/*
'
,
'
tests/**/*
'
,
'
test.js
'
,
'
.eslintrc.json
'
],
{
},
defaultTask
);
}
)
;
var
watch
=
function
()
{
gulp
.
watch
([
'
src/**/*
'
,
'
tests/**/*
'
,
'
test.js
'
,
'
.eslintrc.json
'
],
{
ignoreInitial
:
false
},
defaultTask
);
};
exports
.
watch
=
watch
;
})();
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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