Skip to content

Commit

Permalink
Feature: Convert repository to a monorepo (#66)
Browse files Browse the repository at this point in the history
* monorepo wip

* monorepo wip

* add react integration

* monorepo wip

* monorepo wip

* build sdk

* jest setup wip

* update package.json for cra temp[late

* jest setup wip

* jest setup wip

* finish jest setup

* add build script for sdk, prettier config, dep bump

* monorepo readme

* move travis.yml to repo root

* update travis to use lerna

* add lerna to global

* README enhancements

* test different action branch

* update node version

* move eslintrc to project root

* add eslint-config-react-app

* add deps for eslint-config-react-app

* eslint fixes

* moar fixes

* moar fixes 2

* use stable version for lint action
  • Loading branch information
mmv08 authored Dec 10, 2020
1 parent fc576ab commit 250fc78
Show file tree
Hide file tree
Showing 61 changed files with 6,368 additions and 1,316 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/node_modules
/dist
node_modules
dist
.DS_Store
.idea
.idea
lerna-debug.log
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ if: (branch = master) OR (branch = development) OR (tag IS present)
language: node_js
node_js: '12'
before_install:
- yarn install
- yarn global add lerna
- lerna bootstrap
# Needed to deploy pull request and releases
- pip install awscli --upgrade --user
cache:
yarn: true
script: |
yarn test
lerna run test
if [ -n "$TRAVIS_TAG" ]
then
Expand Down
Loading

0 comments on commit 250fc78

Please sign in to comment.