Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
yjs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sweng-group-15
yjs
Commits
0832be23
Commit
0832be23
authored
9 years ago
by
Kevin Jahns
Browse files
Options
Downloads
Patches
Plain Diff
improved error messaging.. thats it for today
parent
8a2a184f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gulpfile.helper.js
+5
-2
5 additions, 2 deletions
gulpfile.helper.js
package.json
+1
-1
1 addition, 1 deletion
package.json
with
6 additions
and
3 deletions
gulpfile.helper.js
+
5
−
2
View file @
0832be23
...
@@ -100,7 +100,10 @@ module.exports = function (gulp, helperOptions) {
...
@@ -100,7 +100,10 @@ module.exports = function (gulp, helperOptions) {
message
:
'
What type of bump would you like to do?
'
,
message
:
'
What type of bump would you like to do?
'
,
choices
:
[
'
patch
'
,
'
minor
'
,
'
major
'
]
choices
:
[
'
patch
'
,
'
minor
'
,
'
major
'
]
},
function
(
res
)
{
},
function
(
res
)
{
bumptype
=
res
.
bump
if
(
res
.
bump
.
length
===
0
)
{
console
.
info
(
'
You have to select a bump type. Now I
\'
m going to use "patch" as bump type..
'
)
}
bumptype
=
res
.
bump
[
0
]
}))
}))
.
pipe
(
$
.
bump
({
type
:
bumptype
}))
.
pipe
(
$
.
bump
({
type
:
bumptype
}))
.
pipe
(
gulp
.
dest
(
'
./
'
))
.
pipe
(
gulp
.
dest
(
'
./
'
))
...
@@ -143,7 +146,7 @@ module.exports = function (gulp, helperOptions) {
...
@@ -143,7 +146,7 @@ module.exports = function (gulp, helperOptions) {
gulp
.
task
(
'
dev:browser
'
,
[
'
watch:build
'
],
function
()
{
gulp
.
task
(
'
dev:browser
'
,
[
'
watch:build
'
],
function
()
{
return
gulp
.
src
(
files
.
test
)
return
gulp
.
src
(
files
.
test
)
.
pipe
(
$
.
watch
([
'
build/**/*
.js
'
]))
.
pipe
(
$
.
watch
([
'
build/**/*
'
]))
.
pipe
(
$
.
jasmineBrowser
.
specRunner
())
.
pipe
(
$
.
jasmineBrowser
.
specRunner
())
.
pipe
(
$
.
jasmineBrowser
.
server
({
port
:
options
.
testport
}))
.
pipe
(
$
.
jasmineBrowser
.
server
({
port
:
options
.
testport
}))
})
})
...
...
This diff is collapsed.
Click to expand it.
package.json
+
1
−
1
View file @
0832be23
{
{
"name"
:
"yjs"
,
"name"
:
"yjs"
,
"version"
:
"0.6.3
3
"
,
"version"
:
"0.6.3
5
"
,
"description"
:
"A framework for real-time p2p shared editing on arbitrary complex data types"
,
"description"
:
"A framework for real-time p2p shared editing on arbitrary complex data types"
,
"main"
:
"y.js"
,
"main"
:
"y.js"
,
"scripts"
:
{
"scripts"
:
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment