Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EcmaScript 2015 and modular rewrite #132

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ root = true

# Change these settings to your own preference
indent_style = space
indent_size = 4
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
node_modules
*.log*
.tmp
.sass-cache
.jpg
.png
.gif
.DS_Store
Imager.js
20 changes: 5 additions & 15 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"unused": true,
"boss": true,
"eqnull": true,
"esversion": 6,
"browser": true,
"globalstrict": true,
"es3": true,
"globals": {}
}
"strict": true,
"module": true,
"eqeqeq": true
}
13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ env:
- secure: REkbK7Qre238qK7lW4tokWUgUto3xevxNrsIlbubqyBQX8LZpjUvQFruW2F5t8Jb4LAj7jkT11+bRcy9tlz/H4xZeIr5LxSJVDlqBtsQd6gO2mqArM/ooQkNb8SMPzdFJwehtdttiVHrYFFmmb2+VgwlWz1lu7Huf/SqY/x1l0c=
- secure: DK26MDZlb7vSYF9SAfBQbcpZLh34jTnNLTU6nM9nD1lPdIounQ8I+xGYGKgb3lA1BdFQgiA1s5VaWxwO/B3B91WF2kIPsXq1hghRQrXdFEae17XfjyiGEFI6oKyO+yKZvu/y86jz54xxwP0XCwspS3ZJI4BvQ8gKfdBEPkWb9Rc=
matrix:
- BROWSER=BSIE8,BSIE9,BSIE9,BSIE10,BSIE11
- BROWSER=BSEDGE12
- BROWSER=BSOS4,BSOS5,BSOS6,BSOS7,BSOS8
- BROWSER=BSAndroid2,BSAndroid4
- BROWSER=BSSafari5,BSSafari6,BSSafari7,BSSafari8,BSSafari9
- BROWSER=BSFirefox,BSChrome,BSOpera
- BROWSER=BSIE8,BSAndroid2,BSOS4 BUILD=legacy
- BROWSER=BSIE9,BSIE9,BSIE10,BSIE11 BUILD=modern
- BROWSER=BSEDGE12 BUILD=modern
- BROWSER=BSOS5,BSOS6,BSOS7,BSOS8 BUILD=modern
- BROWSER=BSAndroid4,BSAndroid5 BUILD=modern
- BROWSER=BSSafari5,BSSafari6,BSSafari7,BSSafari8,BSSafari9 BUILD=modern
- BROWSER=BSFirefox,BSChrome,BSOpera BUILD=modern

matrix:
allow_failures:
Expand Down
Loading