Skip to content

Commit

Permalink
init files
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasdelfino committed Jan 23, 2019
1 parent b618fd5 commit 754b45d
Show file tree
Hide file tree
Showing 10 changed files with 4,129 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
["@babel/preset-env", {
"targets": {
"browsers": ["last 2 versions", "safari >= 7"]
},
"modules": false
}]
]
}
16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
"extends": "standard",
rules: {
"valid-typeof": 0,
"prefer-promise-reject-errors": 0,
"no-unused-vars": 0,
"no-unused-expressions": 0,
"semi": [2, "always"]
},
globals: {
Tracks: true,
CustomEvent: true,
MutationObserver: true,
Element: true
}
};
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.DS_Store
node_modules
dist
example
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# tracks
# tracks.js

## A minimalistic, platform agnostic library for animating elements as they mount / unmount.

## 2.66kb gzipped
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 754b45d

Please sign in to comment.