Skip to content

Commit d37b59a

Browse files
author
Raymond Feng
committedAug 17, 2016
Refactor wsdl parsing into ES6 classes
1 parent 4365162 commit d37b59a

File tree

162 files changed

+12978
-7525
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+12978
-7525
lines changed
 

‎.babelrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "presets": ["es2015"] }

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
node_modules
22
npm-debug.log
33
coverage
4-
4+
lib
55
.idea
66
*.iml

3 commit comments

Comments
 (3)

djorg83 commented on May 5, 2017

@djorg83

This refactor is missing 'use strict' on almost every file. We are using node v5.6.0. This completely breaks everything!

raymondfeng commented on May 5, 2017

@raymondfeng
Contributor

@djorg83 Please create an issue and explain why missing use strict breaks. If possible, a patch will be really helpful too.

rmg commented on Jun 14, 2017

@rmg
Contributor

@raymondfeng because node 4+ only allow class, let, const, etc. in strict mode.

See #107 for the fix.

Please sign in to comment.