Skip to content

Commit c971bad

Browse files
authored
refactor: move to monorepo (#447)
1 parent 2b078c6 commit c971bad

File tree

153 files changed

+9677
-31842
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+9677
-31842
lines changed

.circleci/config.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:6.13.0-stretch-browsers
6+
working_directory: ~/repo
7+
8+
steps:
9+
- checkout
10+
- run: yarn --version
11+
- run: yarn
12+
- run: yarn bootstrap
13+
- run: yarn build:test
14+
- run: yarn test
15+
- run: yarn test:compat
16+
17+
- save_cache:
18+
paths:
19+
- node_modules
20+
key: v1-dependencies-{{ checksum "yarn.lock" }}

.flowconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
flow
77

88
[options]
9-
suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore
9+
suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ tmp*
2525
# Vim
2626
*.sw[po]
2727

28-
yarn.lock
28+
package-lock.json

circle.yml

-11
This file was deleted.

0 commit comments

Comments
 (0)