0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

feat: first commit

This commit is contained in:
Gao Sun 2021-07-25 17:39:17 +08:00
commit c815a52b37
No known key found for this signature in database
GPG key ID: 0F0EFA2E36639F31
3 changed files with 40 additions and 0 deletions

26
.gitignore vendored Normal file
View file

@ -0,0 +1,26 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
/lib
# logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# misc
cache
.*cache
.DS_Store
*.env

7
lerna.json Normal file
View file

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

7
package.json Normal file
View file

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