Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Initial Public Release
Browse files Browse the repository at this point in the history
  • Loading branch information
regalius committed Dec 25, 2018
0 parents commit 76db8ed
Show file tree
Hide file tree
Showing 402 changed files with 15,538 additions and 0 deletions.
188 changes: 188 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,188 @@
{
"projectOwner": "tokopedia",
"projectName": "treats",
"imageSize": 100,
"repoType": "github",
"commit": false,
"contributorsPerLine": 6,
"contributors": [
{
"login": "regalius",
"name": "Felix Tan",
"avatar_url": "https://avatars3.githubusercontent.com/u/6160832",
"profile": "https://github.com/regalius",
"contributions": [
"code",
"doc",
"question",
"review",
"example"
]
},
{
"login": "martinock",
"name": "Martino Christanto K",
"avatar_url": "https://avatars.githubusercontent.com/u/16898682?v=3",
"profile": "https://github.com/martinock",
"contributions": [
"doc",
"question",
"example",
"tutorial"
]
},
{
"login": "fadlinux",
"name": "Fadli Trias",
"avatar_url": "https://avatars2.githubusercontent.com/u/416498?v=4",
"profile": "https://github.com/fadlinux",
"contributions": [
"doc",
"question",
"example",
"tutorial"
]
},
{
"login": "alchristleo",
"name": "Alchrist Leo",
"avatar_url": "https://avatars1.githubusercontent.com/u/31308706?v=3",
"profile": "https://github.com/alchristleo",
"contributions": [
"doc",
"example",
"tutorial"
]
},
{
"login": "wejick",
"name": "Gian Giovani",
"avatar_url": "https://avatars0.githubusercontent.com/u/112008",
"profile": "https://github.com/fadlinux",
"contributions": [
"code",
"ideas",
"doc",
"example",
"question"
]
},
{
"login": "stephanustedy",
"name": "Stephanus Tedy",
"avatar_url": "https://avatars2.githubusercontent.com/u/11306368",
"profile": "https://github.com/stephanustedy",
"contributions": [
"code",
"ideas",
"review",
"doc",
"question"
]
},
{
"login": "daecide",
"name": "Ferry Sutanto",
"avatar_url": "https://avatars2.githubusercontent.com/u/24540145",
"profile": "https://github.com/daecide",
"contributions": [
"ideas"
]
},
{
"login": "albertwidi",
"name": "Albert Widiatmoko",
"avatar_url": "https://avatars2.githubusercontent.com/u/1622646",
"profile": "https://github.com/albertwidi",
"contributions": [
"ideas"
]
},
{
"login": "codeforpizza",
"name": "Bayu Rizky Ramadhan",
"avatar_url": "https://avatars3.githubusercontent.com/u/11482819",
"profile": "https://github.com/codeforpizza",
"contributions": [
"ideas"
]
},
{
"login": "diagnosa-f",
"name": "Diagnosa Fenomena",
"avatar_url": "https://avatars2.githubusercontent.com/u/30400435",
"profile": "https://github.com/diagnosa-f",
"contributions": [
"ideas"
]
},
{
"login": "essajiwa",
"name": "Essa Jiwa P",
"avatar_url": "https://avatars3.githubusercontent.com/u/625072",
"profile": "https://github.com/essajiwa",
"contributions": [
"ideas"
]
},
{
"login": "afifkhaidir-tkpd",
"name": "Afif Khaidir",
"avatar_url": "https://avatars1.githubusercontent.com/u/30681410",
"profile": "https://github.com/afifkhaidir-tkpd",
"contributions": [
"bug",
"ideas"
]
},
{
"login": "riobahtiar",
"name": "Rio Bahtiar",
"avatar_url": "https://avatars3.githubusercontent.com/u/2656058",
"profile": "https://github.com/riobahtiar",
"contributions": [
"bug",
"ideas"
]
},
{
"login": "elbertcl",
"name": "Elbert Christoper",
"avatar_url": "https://avatars3.githubusercontent.com/u/12596467",
"profile": "https://github.com/elbertcl",
"contributions": [
"bug",
"ideas"
]
},
{
"login": "adarwawan",
"name": "Ahmad Darmawan",
"avatar_url": "https://avatars2.githubusercontent.com/u/11177589",
"profile": "https://github.com/adarwawan",
"contributions": [
"bug"
]
},
{
"login": "adiprimadharma",
"name": "Adi Primadharma",
"avatar_url": "https://avatars3.githubusercontent.com/u/30250871",
"profile": "https://github.com/adiprimadharma",
"contributions": [
"bug",
"ideas"
]
},
{
"login": "dikasetiadi",
"name": "Andhika Setiadi",
"avatar_url": "https://avatars1.githubusercontent.com/u/26212432",
"profile": "https://github.com/dikasetiadi",
"contributions": [
"bug",
"ideas"
]
}
]
}
9 changes: 9 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"presets": [["env", { "modules": false }], "react", "flow", "stage-2"],
"plugins": ["react-hot-loader/babel", "universal-import"],
"env": {
"test": {
"presets": [["env"], "react", "flow", "stage-2"]
}
}
}
39 changes: 39 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.12.0
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4
working_directory: ~/treats
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: "Install Monorepo Dependencies"
command : yarn install
- run:
name: "Lerna Bootstrap"
command: yarn bootstrap
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run:
name: "Lint Packages"
command: yarn lint
- run:
name: "Unit Testing Packages"
command: yarn test
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root=true

[*]
indent_style=space
indent_size=4
end_of_line = lf
insert_final_newline = true
charset=utf-8
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
**/generator/
node_modules/
build/
public/
dist/
Loading

0 comments on commit 76db8ed

Please sign in to comment.