Browse Source

Add Lerna to the root

staging
David Ludwig 4 years ago
parent
commit
67a8952869
4 changed files with 4589 additions and 12 deletions
  1. +6
    -3
      .gitignore
  2. +9
    -0
      lerna.json
  3. +7
    -0
      package.json
  4. +4567
    -9
      yarn.lock

+ 6
- 3
.gitignore View File

@ -1,11 +1,14 @@
# Docker secrets
.secrets
.secrets/
# Volumes
.volumes
.volumes/
# VS Code
.vscode
.vscode/
# Node Modules
node_modules/
# Environment varibales
.env


+ 9
- 0
lerna.json View File

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

+ 7
- 0
package.json View File

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

+ 4567
- 9
yarn.lock
File diff suppressed because it is too large
View File


Loading…
Cancel
Save