-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduced Lerna and distributed stuff in packages
- Loading branch information
Javier Tarazaga
committed
Sep 6, 2019
1 parent
4e1d4a9
commit aa1d063
Showing
559 changed files
with
32,958 additions
and
12,631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
# dependencies | ||
node_modules | ||
|
||
# env variables | ||
.env.local | ||
|
||
# production | ||
build | ||
dist | ||
*.log | ||
.idea | ||
www | ||
.deliver | ||
|
||
# misc | ||
*.iml | ||
*/**/openzeppelin.json | ||
.env.local | ||
*.log | ||
.DS_Store | ||
npm-debug.log | ||
yarn-error.log | ||
.vscode | ||
.idea | ||
lerna-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
const gulp = require('gulp'); | ||
const { series } = require('gulp'); | ||
|
||
function copyDashboard() { | ||
return gulp | ||
.src('packages/dashboard/dist/**/*') | ||
.pipe( | ||
gulp.dest('www') | ||
); | ||
} | ||
|
||
function copyWebServer() { | ||
return gulp | ||
.src('packages/web-server/dist/**/*') | ||
.pipe( | ||
gulp.dest('www') | ||
); | ||
} | ||
|
||
// export tasks | ||
exports.copyDashboard = copyDashboard; | ||
exports.copyWebServer = copyWebServer; | ||
exports.default = series(copyDashboard, copyWebServer); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"npmClient": "npm", | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "independent" | ||
} |
Oops, something went wrong.