Skip to content

Commit

Permalink
some readme and build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Romaniak committed May 11, 2016
1 parent 652865c commit e82751a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Install with [npm](http://github.com/isaacs/npm):



Then embed the file "./tinysoap-browser-min.js"
Then embed the file "./browser-soap-min.js"

<script src="tinysoap-browser-min.js"></script>
<script src="browser-soap-min.js"></script>

Or in es6

Expand All @@ -36,7 +36,7 @@ import soap from 'browser-soap'
Then you write code such as:

// in global scope:
this.tinysoap.createClient("/ACMEWebService?WSDL", function(err, client) {
this.soap.createClient("/ACMEWebService?WSDL", function(err, client) {
if (!err)
console.log(client); // all methods are stored in client
});
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"lib": "./lib"
},
"scripts": {
"build": "bna -f index.js && uglifyjs index.fused.js -c -m > tinysoap-browser-min.js && rm index.fused.js"
"build": "bna -f index.js && uglifyjs index.fused.js -c -m > browser-soap-min.js && rm index.fused.js"
},
"keywords": [
"soap",
Expand Down

0 comments on commit e82751a

Please sign in to comment.