Skip to content

Commit

Permalink
chore(package): reset
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatyang committed Jul 15, 2017
1 parent 2a7156d commit 277d9e1
Show file tree
Hide file tree
Showing 10 changed files with 2,289 additions and 104 deletions.
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 = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
generated
node_modules
node_modules/
28 changes: 1 addition & 27 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,9 @@
language: node_js

node_js:
- '6'

before_install:
- git config --global user.name "$GIT_USER_NAME"
- git config --global user.email "$GIT_USER_EMAIL"
- git config --global push.default simple

before_script:
- git clone --depth=1 --branch=master "https://github.com/$TRAVIS_REPO_SLUG.git" ./generated
- rm -rf ./generated/*

script:
- yarn run generate

after_success:
- cd ./generated
- git add --all
- git commit -m "Update emoji-cheat-sheet"
- git push -qf "https://[email protected]/$TRAVIS_REPO_SLUG.git"

branches:
only:
- generator
- stable

cache:
yarn: true
directories:
- node_modules

env:
global:
secure: DGAmpkJk6+RZIuNpobOd+6gHY9lTkNa/BQXDjbeX1UVO28kCT7vUuq6kmrFYcXLuHc6VCPzqve73byoy2uIbgpLjcp1P3k97x950f4atlqGXyEGCuzPN/wnJi2DHgAYAWC0bYqvgYjIXi/fdS3etPTBp1S/gUDGrvxkQuG4KTLmT163hnfLAQVHX/eE+0pPzR5ZbhUO0v3hyhqGhreYfvH22OaurbrBfxkE+d8cs9v9llRw3Xsj4KZZiMrHu9xAaoo9uxW0QM6PEElPitGfB5fCogQvmBFpk02Gsl3UoN++/7tjb6wkGgayhbQzopS+NyYXw5NCIKuzDkt5X68B0J+Dp8gcNCp4Fp08jmK4D7xqmqJopHDulyuQqgZ+/nue6+6j7J6I9tBnIftjPoDyYIme2YeMkrt2+P2ofv2E+Wv3aTLqZsg1CbkAhUHURGhG40UoaKSk3ft75+i5/VWdBe0QV6aLLmMl/2Hu5dJCtt9uGldAuC0huu6gIjXR0pPVMlGinxtPvjU0k/2ADxHzqwhLeaYpPX0HPWbYd25Can1IlwtmLELlVnTTzMwYugJzgpswm1pmH9jaq7oGjgv9VTRBz1Ab8uAaOivQi/W5Mb1LsWigHOiXmwTkMTs5NHGkolEX307Xv9XASr9F5T8hGNkUFBYQ6DJkjIm9uR14TcdQ=
10 changes: 0 additions & 10 deletions .vscode/settings.json

This file was deleted.

17 changes: 15 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "emoji-cheat-sheet-generator",
"version": "0.0.0-dev",
"private": true,
"author": "ikatyang",
"license": "MIT",
Expand All @@ -9,7 +10,19 @@
"generate": "node ./scripts/generate.js"
},
"dependencies": {
"cheerio": "0.22.0",
"request": "2.81.0"
"cheerio": "^0.22.0",
"request": "^2.81.0"
},
"devDependencies": {
"@types/cheerio": "0.22.2",
"@types/jest": "20.0.2",
"@types/request": "0.0.47",
"jest": "20.0.4",
"jest-playback": "1.0.0",
"ts-jest": "20.0.7",
"ts-node": "3.2.0",
"tslint": "5.5.0",
"tslint-config-ikatyang": "0.10.0",
"typescript": "2.4.1"
}
}
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"strict": true,
"lib": ["es6"],
"module": "commonjs"
},
"include": ["src/**/*.ts"]
}
3 changes: 3 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "tslint-config-ikatyang"
}
Loading

0 comments on commit 277d9e1

Please sign in to comment.