Implement monorepo with lerna (#1)

* Set up workspace

* Add space at end of files

---------

Co-authored-by: neeraj <neeraj.rtly@gmail.com>
This commit is contained in:
Nabarun Gogoi 2023-12-06 16:07:12 +05:30 committed by GitHub
parent 03f22aa394
commit cf37ad15b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 3958 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules/

View File

@ -1 +1 @@
# snowballtools
# snowballtools

8
lerna.json Normal file
View File

@ -0,0 +1,8 @@
{
"packages": [
"packages/*"
],
"version": "0.0.0",
"npmClient": "yarn",
"useWorkspaces": true
}

11
package.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "snowball-tools",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {},
"devDependencies": {
"lerna": "^8.0.0"
}
}

3937
yarn.lock Normal file

File diff suppressed because it is too large Load Diff