Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
1b1380f6
Commit
1b1380f6
authored
Dec 03, 2019
by
aniket-engg
Committed by
Aniket
Dec 03, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gulpfile updated
parent
f259c0a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
gulpfile.js
gulpfile.js
+1
-2
No files found.
gulpfile.js
View file @
1b1380f6
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
'use strict'
;
'use strict'
;
var
{
task
}
=
require
(
'gulp'
);
var
{
task
}
=
require
(
'gulp'
);
var
fs
=
require
(
'fs'
);
var
fs
=
require
(
'fs'
);
var
exec
=
require
(
'child_process'
).
exec
;
const
util
=
require
(
'util'
);
const
util
=
require
(
'util'
);
const
promisifyExec
=
util
.
promisify
(
require
(
'child_process'
).
exec
);
const
promisifyExec
=
util
.
promisify
(
require
(
'child_process'
).
exec
);
...
@@ -13,7 +12,7 @@ task('publishTag', async function () {
...
@@ -13,7 +12,7 @@ task('publishTag', async function () {
await
promisifyExec
(
"git tag v"
+
packageJSON
.
version
+
"; git push --tags"
);
await
promisifyExec
(
"git tag v"
+
packageJSON
.
version
+
"; git push --tags"
);
});
});
task
(
'updateChangelog'
,
async
function
update
()
{
task
(
'updateChangelog'
,
async
function
()
{
let
previous_version
=
process
.
argv
[
4
];
let
previous_version
=
process
.
argv
[
4
];
let
next_version
=
"v"
+
packageJSON
.
version
;
let
next_version
=
"v"
+
packageJSON
.
version
;
await
promisifyExec
(
"github-changes -o ethereum -r remix -a --file changes.md --only-pulls --use-commit-body --only-merges --between-tags "
+
previous_version
+
"..."
+
next_version
);
await
promisifyExec
(
"github-changes -o ethereum -r remix -a --file changes.md --only-pulls --use-commit-body --only-merges --between-tags "
+
previous_version
+
"..."
+
next_version
);
...
...
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