Skip to content

Commit

Permalink
feat: Prepare for npm registry
Browse files Browse the repository at this point in the history
  • Loading branch information
Dongsik Yoo committed Aug 29, 2017
1 parent b2b015a commit d2b4797
Show file tree
Hide file tree
Showing 72 changed files with 7,528 additions and 11,644 deletions.
7 changes: 6 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"presets": ["es2015"]
"presets": ["es2015"],
"plugins": [
["transform-es2015-destructuring", {"loose": true}],
["transform-es2015-for-of", {"loose": true}],
["transform-es2015-spread", {"loose": true}]
]
}
253 changes: 0 additions & 253 deletions .eslintrc

This file was deleted.

19 changes: 19 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
"extends": "tui/es6",
"env": {
"browser": true,
"amd": true,
"node": true,
"jasmine": true,
"jquery": true,
"es6": true
},
"globals": {
"fabric": true,
"tui": true,
"loadFixtures": true
},
"parserOptions": {
"sourceType": "module"
}
};
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,6 @@ demo
report
*.vim
test.html

# Compiled files
dist
26 changes: 26 additions & 0 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!--
Thank you for your contribution.
When it comes to write an issue, please, use the template below.
To use the template is mandatory for submit new issue and we won't reply the issue that without the template.
And you can write template's contents in Korean also.
-->

<!-- TEMPLATE -->

## Version
<!-- Write the version of the grid you are currently using. -->

## Development Environment
<!-- Write the browser type, OS and so on -->

## Current Behavior
<!-- Write a description of the current operation. You can add example code, 'CodePen' or 'jsfiddle' links. -->

```js
// Write example code
```

## Expected Behavior
<!-- Write a description of the future action. -->
Loading

0 comments on commit d2b4797

Please sign in to comment.