Skip to content

Commit

Permalink
Merge branch 'release/3.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dhenl2 committed Mar 20, 2024
2 parents 051d73b + df469b5 commit 22de3f3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### CHANGED
- BREAKING CHANGE: Changed minified file name from "wideskyClient.min.js" to "jsWideSky.min.js".
- BREAKING CHANGE: Changed default export name of minified file from `wideskyClient` (assuming this was set as a default
when not specified in the webpack configuration) to `JsWideSky`.

## [2.1.5] - 2024-03-13
### CHANGED
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Example:
"clientId": "1231231231",
"clientSecret": "545454545445"
};
const wsClient = jsWideSky.WideSkyClient.makeFromConfig(FE_CONFIG);
const wsClient = JsWideSky.WideSkyClient.makeFromConfig(FE_CONFIG);
wsClient.v2.find("site")
.then((res) => console.log(res));
</script>
Expand Down
8 changes: 4 additions & 4 deletions dist/jsWideSky.develop.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jsWideSky.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = (env, argv) => {
filename: argv.mode === 'production' ? `[name].min.js` : `[name].develop.js`,
library: {
type: 'umd',
name: 'jsWideSky',
name: 'JsWideSky',
umdNamedDefine: true
},
globalObject: 'this',
Expand Down

0 comments on commit 22de3f3

Please sign in to comment.