Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 725413a

Browse files
authored
Merge branch 'master' into greenkeeper/@types/sinon-5.0.0
2 parents f0b7bf9 + 2c34ace commit 725413a

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="0.2.1"></a>
6+
## [0.2.1](https://github.com/strapi/strapi-sdk-javascript/compare/v0.2.0...v0.2.1) (2018-05-24)
7+
8+
9+
### Bug Fixes
10+
11+
* **main:** default export ([48baf83](https://github.com/strapi/strapi-sdk-javascript/commit/48baf83)), closes [strapi/strapi-sdk-javascript#6](https://github.com/strapi/strapi-sdk-javascript/issues/6)
12+
13+
14+
515
<a name="0.2.0"></a>
616
# [0.2.0](https://github.com/strapi/strapi-sdk-javascript/compare/v0.1.0...v0.2.0) (2018-05-02)
717

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "strapi-sdk-javascript",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "The official Strapi SDK for JavaScript",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",
@@ -54,29 +54,30 @@
5454
"dependencies": {
5555
"axios": "^0.18.0",
5656
"js-cookie": "^2.2.0",
57-
"qs": "^6.5.1"
57+
"qs": "^6.5.2"
5858
},
5959
"devDependencies": {
60+
"@types/form-data": "^2.2.1",
6061
"@types/js-cookie": "^2.1.0",
6162
"@types/qs": "^6.5.1",
6263
"@types/sinon": "^5.0.0",
6364
"ava": "^1.0.0-beta.4",
6465
"browser-env": "^3.2.5",
65-
"codecov": "^3.0.0",
66+
"codecov": "^3.0.2",
6667
"cz-conventional-changelog": "^2.1.0",
6768
"form-data": "^2.3.2",
6869
"gh-pages": "^1.0.0",
69-
"npm-run-all": "^4.1.2",
70+
"npm-run-all": "^4.1.3",
7071
"npm-scripts-info": "^0.3.6",
7172
"nsp": "^3.2.1",
72-
"nyc": "^11.7.1",
73+
"nyc": "^11.8.0",
7374
"opn-cli": "^3.1.0",
7475
"prettier": "^1.12.1",
7576
"sinon": "^5.0.3",
76-
"standard-version": "^4.0.0",
77+
"standard-version": "^4.4.0",
7778
"trash-cli": "^1.4.0",
78-
"tslint": "^5.4.3",
79-
"tslint-config-prettier": "^1.12.0",
79+
"tslint": "^5.10.0",
80+
"tslint-config-prettier": "^1.13.0",
8081
"typedoc": "^0.11.1",
8182
"typescript": "^2.8.3"
8283
},

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
export * from './lib/sdk';
1+
import Strapi from './lib/sdk';
2+
export default Strapi;

0 commit comments

Comments
 (0)