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

Commit

Permalink
Init v13
Browse files Browse the repository at this point in the history
  • Loading branch information
quanglam2807 committed Jan 16, 2019
0 parents commit 440498b
Show file tree
Hide file tree
Showing 180 changed files with 33,254 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
["env", {
"targets": {
"browsers": ["last 2 versions"]
}
}],
"react"
]
}
15 changes: 15 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"extends": "airbnb",
"globals": {
"window": true,
"document": true,
"fetch": true
},
"rules": {
"import/no-extraneous-dependencies": [0],
"react/jsx-filename-extension": [1, { "extensions": [".js"] }],
"react/forbid-prop-types": [0],
"import/prefer-default-export": [0],
"camelcase": [0]
}
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
.DS_Store
dist
build
.env
*.tar.gz
.vscode
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "docs/_sass/bulma"]
path = docs/_sass/bulma
url = https://github.com/jgthms/bulma
26 changes: 26 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
language: node_js
os: osx
node_js: 10
osx_image: xcode10.1
cache: yarn
before_script:
- npm install -g npx
- yarn template:install
- yarn lint
script:
- yarn dist
- if [ "$TRAVIS_BRANCH" == "master" -a "$TRAVIS_PULL_REQUEST" == "false" ]; then yarn
catalog:install && yarn catalog:pack && yarn catalog:publish; fi
notifications:
email: false
deploy:
provider: s3
access_key_id: $AWS_ACCESS_KEY_ID
secret_access_key: $AWS_SECRET_ACCESS_KEY
bucket: s3.getwebcatalog.com
local-dir: catalog/dist
upload-dir: apps
acl: public_read
skip_cleanup: true
on:
repo: quanglam2807/webcatalog
Loading

0 comments on commit 440498b

Please sign in to comment.