Skip to content

Commit

Permalink
merge release/0.23.7 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
deyhle committed Jun 7, 2022
2 parents 024dc00 + bc1b956 commit dc3a5b4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 13 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## <small>0.23.7 (2022-06-07)</small>

* release version 0.23.7 ([bc1b956](https://github.com/entrecode/ec.sdk/commit/bc1b956))
* chore: changed browser field in package.json ([dd18c5b](https://github.com/entrecode/ec.sdk/commit/dd18c5b))
* chore: update buildBrowser command ([3264fa9](https://github.com/entrecode/ec.sdk/commit/3264fa9))



## <small>0.23.5 (2022-05-31)</small>

* release version 0.23.5 ([29938d4](https://github.com/entrecode/ec.sdk/commit/29938d4))
Expand Down
12 changes: 9 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset='utf-8'>
<title>ec.sdk 0.23.6 | Documentation</title>
<title>ec.sdk 0.23.7 | Documentation</title>
<meta name='description' content='SDK for ec.api'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' rel='stylesheet'>
Expand All @@ -15,7 +15,7 @@
<div id='split-left' class='overflow-auto fs0 height-viewport-100'>
<div class='py1 px2'>
<h3 class='mb0 no-anchor'>ec.sdk</h3>
<div class='mb1'><code>0.23.6</code></div>
<div class='mb1'><code>0.23.7</code></div>
<input
placeholder='Filter'
id='filter-input'
Expand Down Expand Up @@ -35709,7 +35709,13 @@ <h2 id='changelog' class='mt0'>
</h2>


<h2>0.23.5 (2022-05-31)</h2>
<h2>0.23.7 (2022-06-07)</h2>
<ul>
<li>release version 0.23.7 (<a href="https://github.com/entrecode/ec.sdk/commit/bc1b956">bc1b956</a>)</li>
<li>chore: changed browser field in package.json (<a href="https://github.com/entrecode/ec.sdk/commit/dd18c5b">dd18c5b</a>)</li>
<li>chore: update buildBrowser command (<a href="https://github.com/entrecode/ec.sdk/commit/3264fa9">3264fa9</a>)</li>
</ul>
<h2>0.23.5 (2022-05-31)</h2>
<ul>
<li>release version 0.23.5 (<a href="https://github.com/entrecode/ec.sdk/commit/29938d4">29938d4</a>)</li>
<li>chore: dependency fix (<a href="https://github.com/entrecode/ec.sdk/commit/8b91853">8b91853</a>)</li>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 3 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"name": "ec.sdk",
"version": "0.23.6",
"version": "0.23.7",
"description": "SDK for ec.api",
"repository": "entrecode/ec.sdk",
"author": "Simon Scherzinger <scherzinger@entrecode.de>",
"license": "ISC",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"browser": "./dist/ec.sdk.min.js",
"scripts": {
"release": "./release.sh $3",
"build": "npm run buildNode && npm run buildBrowser",
"buildNode": "tsc",
"buildBrowser": "browserify lib/index.js -o dist/ec.sdk.js -s ec --global-transform [ babelify --presets [ es2015 ] ] && uglifyjs dist/ec.sdk.js --compress --mangle -o dist/ec.sdk.min.js",
"buildBrowser": "cp lib/index.js lib/browser.js && browserify lib/browser.js -o dist/ec.sdk.js -s ec --global-transform [ babelify --presets [ es2015 ] ] && uglifyjs dist/ec.sdk.js --compress --mangle -o dist/ec.sdk.min.js",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"coveralls": "npm run buildNode && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R dot --exit --recursive && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "npm run buildNode && istanbul cover ./node_modules/mocha/bin/_mocha -- --exit -R dot --recursive && open ./coverage/lcov-report/index.html",
Expand All @@ -22,12 +23,6 @@
"testTravis": "mocha -R dot --recursive --exit",
"webpack": "webpack --config webpack.config.js"
},
"browser": {
"crypto": false,
"fs": false,
"http": false,
"https": false
},
"dependencies": {
"@types/halfred": "^2.0.1",
"@types/jwt-decode": "^3.1.0",
Expand Down

0 comments on commit dc3a5b4

Please sign in to comment.