forked from loopbackio/loopback4-example-shopping
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: convert the repo into a monorepo managed by lerna
Signed-off-by: Raymond Feng <[email protected]>
- Loading branch information
1 parent
f81a961
commit ee557f0
Showing
9 changed files
with
3,661 additions
and
1,077 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
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
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,12 @@ | ||
{ | ||
"groups": { | ||
"default": { | ||
"packages": [ | ||
"package.json", | ||
"packages/shopping/package.json", | ||
"packages/recommender/package.json" | ||
] | ||
} | ||
}, | ||
"ignore": ["@types/node"] | ||
} |
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,30 @@ | ||
{ | ||
"lerna": "3.3.0", | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"command": { | ||
"bootstrap": { | ||
"concurrency": 8 | ||
}, | ||
"version": { | ||
"conventionalCommits": true, | ||
"message": "chore: publish release" | ||
}, | ||
"publish": { | ||
}, | ||
"run": { | ||
"prefix": false, | ||
"loglevel": "silent", | ||
"stream": true, | ||
"concurrency": 8, | ||
"sort": false | ||
}, | ||
"clean": { | ||
"loglevel": "silent", | ||
"concurrency": 8, | ||
"yes": true | ||
} | ||
}, | ||
"version": "independent" | ||
} |
Oops, something went wrong.