Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
Refactor compilation
Browse files Browse the repository at this point in the history
* Uplift npm packages
* Remove temp files
* Code cleanup
* Fix image npm module versions
  • Loading branch information
ducksoupdev committed Jan 11, 2017
1 parent 4d3f1fe commit cee0fa7
Show file tree
Hide file tree
Showing 39 changed files with 1,468 additions and 1,451 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf

[*.md]
indent_style = tab

[*.yml]
indent_style = space
indent_size = 2
41 changes: 41 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"env": {
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-console": [
"error", {
"allow": ["info", "warn", "error"]
}
]
},
"globals": {
"process": false,
"it": false,
"afterEach": false,
"beforeEach": false,
"after": false,
"describe": false,
"before": false
}
}
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
node_modules
coverage
node_modules/
coverage/
npm-debug.log
.vscode/
debug.log
.vscode/
.idea/
.tmp/
53 changes: 0 additions & 53 deletions .jshintrc

This file was deleted.

4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
node_js:
- "4.1"
- "0.12"
- "6.9"
- "4.7"
before_script:
- npm install -g gulp
script: gulp test-ci
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change log

## v0.2.0 (2017-01-11)

**Features**

* Refactor compilation
* Uplift npm packages
* Remove temp files
* Code cleanup
* Fix image npm module versions

## v0.1.29 (2017-01-11)

**Features**

* Add cssIgnore configuration option

## v0.1.28 (2016-11-11)

**Fixes**
Expand Down
5 changes: 0 additions & 5 deletions TODO.md

This file was deleted.

Loading

0 comments on commit cee0fa7

Please sign in to comment.