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
d37356c7
Unverified
Commit
d37356c7
authored
Oct 16, 2018
by
yann300
Committed by
GitHub
Oct 16, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #998 from ethereum/updateLerna
update lerna / add gulp
parents
dddd4e4e
cb71dc9d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
2 deletions
+23
-2
gulpfile.js
gulpfile.js
+10
-0
lerna.json
lerna.json
+10
-1
package.json
package.json
+3
-1
No files found.
gulpfile.js
0 → 100644
View file @
d37356c7
#!/usr/bin/env node
'use strict'
;
var
gulp
=
require
(
'gulp'
);
var
lernaJSON
=
require
(
'./lerna.json'
);
gulp
.
task
(
'publishTag'
,
function
()
{
exec
(
"git tag v"
+
lernaJSON
.
version
+
"; git push --tags"
);
});
lerna.json
View file @
d37356c7
...
...
@@ -8,5 +8,14 @@
"remix-tests"
,
"remix-simulator"
],
"version"
:
"independent"
"command"
:
{
"init"
:
{
"exact"
:
true
},
"publish"
:
{
"exact"
:
true
,
"skipGit"
:
true
}
},
"version"
:
"0.1.0"
}
package.json
View file @
d37356c7
{
"devDependencies"
:
{
"
gulp
"
:
"^3.9.1"
,
"
lerna
"
:
"^2.10.2"
},
"scripts"
:
{
"bootstrap"
:
"lerna bootstrap"
,
"publish"
:
"lerna publish"
"publish"
:
"lerna publish"
,
"release"
:
"lerna bootstrap; lerna publish; gulp; gulp publishTag;"
}
}
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