Skip to content

Commit e392da9

Browse files
committed
Merge commit 'c0c1e47f1c427faa8559bd43fff6eb419ccb26e5'
2 parents 215a6f1 + c0c1e47 commit e392da9

20 files changed

+352
-583
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- 5.7.0
3+
- 7.7.2
44
env:
55
- CXX=g++-4.8
66
addons:
@@ -10,11 +10,12 @@ addons:
1010
packages:
1111
- g++-4.8
1212
before_install:
13-
- npm install -g protractor
13+
- npm install -g protractor@3.3.0
1414
install:
1515
- npm install -g npm@2
1616
- npm install -g grunt-cli
1717
- npm install -g bower
18+
- npm install selenium-webdriver
1819
- bower install
1920
- npm install
2021
- ./node_modules/protractor/bin/webdriver-manager update --standalone
@@ -25,7 +26,7 @@ before_script:
2526
script:
2627
- npm run build
2728
- npm test
28-
- grunt e2e-test
29+
# - grunt e2e-test
2930
notifications:
3031
slack:
3132
secure: iGLGsYyVIyKVpVVCskGh/zc6Pkqe0D7jpUtbywSbnq6l5seE6bvBVqm0F2FSCIN+AIC+qal2mPEWysDVsLACm5tTEeA8NfL8dmCrAKbiFbi+gHl4mnHHCHl7ii/7UkoIIXNc5UXbgMSXRS5l8UcsSDlN8VxC5zWstbJvjeYIvbA=

Gruntfile.js

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ module.exports = function(grunt) {
44
grunt.loadNpmTasks('grunt-contrib-cssmin');
55
grunt.loadNpmTasks('grunt-contrib-copy');
66
grunt.loadNpmTasks('grunt-contrib-uglify');
7-
grunt.loadNpmTasks('grunt-doctoc');
87
grunt.loadNpmTasks('grunt-contrib-jshint');
98
grunt.loadNpmTasks('grunt-jscs');
109
grunt.loadNpmTasks('grunt-contrib-watch');
@@ -58,27 +57,6 @@ module.exports = function(grunt) {
5857
}
5958
},
6059

61-
doctoc: {
62-
options: {
63-
removeAd: false
64-
},
65-
readme: {
66-
options: {
67-
target: './README.md'
68-
}
69-
},
70-
doc: {
71-
options: {
72-
target: './doc/README.md'
73-
}
74-
},
75-
faq: {
76-
options: {
77-
target: './doc/FAQ.md'
78-
}
79-
},
80-
},
81-
8260
jshint: {
8361
all: ['src/*.js']
8462
},
@@ -99,13 +77,7 @@ module.exports = function(grunt) {
9977
tasks: ['sass', 'cssmin'],
10078
options: {
10179
},
102-
},
103-
docs: {
104-
files: ['README.md', 'doc/README.md', 'doc/FAQ.md'],
105-
tasks: ['doctoc'],
106-
options: {
107-
},
108-
},
80+
}
10981
},
11082

11183
protractor: {
@@ -134,6 +106,6 @@ module.exports = function(grunt) {
134106
}
135107
});
136108

137-
grunt.registerTask('default', ['sass', 'cssmin', 'jshint', 'jscs', 'copy', 'uglify', 'doctoc']);
109+
grunt.registerTask('default', ['sass', 'cssmin', 'jshint', 'jscs', 'copy', 'uglify']);
138110
grunt.registerTask('e2e-test', ['connect', 'protractor_webdriver', 'protractor']);
139111
};

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2016 Pavel Reznikov, Dylan Weiss
3+
Copyright (c) 2014-2017 Pavel Reznikov, Dylan Weiss
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)