Skip to content

Commit

Permalink
Merge pull request #1 from CoursePark/release-v-1.0.0
Browse files Browse the repository at this point in the history
Update supported node version and dependencies
  • Loading branch information
MitMaro authored May 23, 2018
2 parents ccc8a84 + d5b2179 commit 1e2a84a
Show file tree
Hide file tree
Showing 4 changed files with 1,584 additions and 35 deletions.
6 changes: 5 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
insert_final_newline = false

[package.json]
indent_style = space
indent_size = 2
7 changes: 4 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ module.exports = function (grunt) {
'tasks/**/*.js',
'test/**/*.js',
'*.js',
'*.json'
'*.json',
'!package.json',
'!package-lock.json'
]
}
},
Expand All @@ -67,8 +69,7 @@ module.exports = function (grunt) {
}
});

grunt.registerTask('setup', ['exec:install']);
grunt.registerTask('hint', ['setup', 'jshint', 'lintspaces']);
grunt.registerTask('hint', ['jshint', 'lintspaces']);
grunt.registerTask('test', ['hint', 'mochaTest']);
grunt.registerTask('default', ['test']);
};
Loading

0 comments on commit 1e2a84a

Please sign in to comment.