Skip to content

Commit

Permalink
build: setup lerna and move API files into packages/sturgis-api
Browse files Browse the repository at this point in the history
* Setup ESLint, Prettier, Conventional Commits, etc at repo root
* Split package.json into root & api level files
  • Loading branch information
krishnagopinath committed May 4, 2020
1 parent 35d0339 commit e79840f
Show file tree
Hide file tree
Showing 59 changed files with 8,189 additions and 2,430 deletions.
6 changes: 1 addition & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
module.exports = {
env: {
commonjs: true,
es6: true,
node: true,
},
root: true,
extends: ['standard', 'plugin:prettier/recommended'],
globals: {
Atomics: 'readonly',
Expand Down
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
node_modules

.env
node_modules
8 changes: 8 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

{
"version": "independent",
"npmClient": "npm",
"packages": [
"packages/*"
]
}

0 comments on commit e79840f

Please sign in to comment.