1
0
Fork 0

Initialize a Lerna project

Lerna seems like a reasonable place to start:
- One repository for easier cross-team work and one place for issues
- Multiple packages for independent versioning
pull/1/head
Jonathan Clem 2019-04-19 14:29:24 -04:00
commit 8446e3b247
No known key found for this signature in database
GPG Key ID: 48C5B22E9FD6E80F
3 changed files with 6027 additions and 0 deletions

6
lerna.json Normal file
View File

@ -0,0 +1,6 @@
{
"packages": [
"packages/*"
],
"version": "independent"
}

6014
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

7
package.json Normal file
View File

@ -0,0 +1,7 @@
{
"name": "root",
"private": true,
"devDependencies": {
"lerna": "^3.13.3"
}
}