@atlaskit/util-service-support
Advanced tools
Comparing version 6.0.1 to 6.0.2
# @atlaskit/util-service-support | ||
## 6.0.2 | ||
### Patch Changes | ||
- [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option. | ||
This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started | ||
Also add `typescript` to `devDependencies` to denote version that the package was built with. | ||
## 6.0.1 | ||
@@ -4,0 +12,0 @@ |
@@ -5,6 +5,4 @@ "use strict"; | ||
exports.buildCredentials = function (secOptions) { | ||
return secOptions && secOptions.omitCredentials | ||
? 'omit' | ||
: 'include'; | ||
return secOptions && secOptions.omitCredentials ? 'omit' : 'include'; | ||
}; | ||
//# sourceMappingURL=types.js.map |
{ | ||
"name": "@atlaskit/util-service-support", | ||
"version": "6.0.1" | ||
"version": "6.0.2" | ||
} |
export const buildCredentials = (secOptions) => { | ||
return secOptions && secOptions.omitCredentials | ||
? 'omit' | ||
: 'include'; | ||
return secOptions && secOptions.omitCredentials ? 'omit' : 'include'; | ||
}; | ||
//# sourceMappingURL=types.js.map |
{ | ||
"name": "@atlaskit/util-service-support", | ||
"version": "6.0.1" | ||
"version": "6.0.2" | ||
} |
export var buildCredentials = function (secOptions) { | ||
return secOptions && secOptions.omitCredentials | ||
? 'omit' | ||
: 'include'; | ||
return secOptions && secOptions.omitCredentials ? 'omit' : 'include'; | ||
}; | ||
//# sourceMappingURL=types.js.map |
{ | ||
"name": "@atlaskit/util-service-support", | ||
"version": "6.0.1" | ||
"version": "6.0.2" | ||
} |
{ | ||
"name": "@atlaskit/util-service-support", | ||
"version": "6.0.1", | ||
"version": "6.0.2", | ||
"description": "A library of support classes for integrating React components with REST HTTP services", | ||
@@ -14,3 +14,3 @@ "publishConfig": { | ||
"module:es2019": "dist/es2019/index.js", | ||
"types": "dist/cjs/index.d.ts", | ||
"types": "dist/types/index.d.ts", | ||
"atlaskit:src": "src/index.ts", | ||
@@ -33,3 +33,4 @@ "atlassian": { | ||
"fetch-mock": "^8.0.0", | ||
"sinon": "^2.2.0" | ||
"sinon": "^2.2.0", | ||
"typescript": "3.9.6" | ||
}, | ||
@@ -36,0 +37,0 @@ "keywords": [ |
@@ -6,3 +6,3 @@ { | ||
"module:es2019": "../dist/es2019/serviceResources.js", | ||
"types": "../dist/cjs/serviceResources.d.ts" | ||
"types": "../dist/types/serviceResources.d.ts" | ||
} |
@@ -6,3 +6,3 @@ { | ||
"module:es2019": "../dist/es2019/serviceUtils.js", | ||
"types": "../dist/cjs/serviceUtils.d.ts" | ||
"types": "../dist/types/serviceUtils.d.ts" | ||
} |
@@ -6,3 +6,3 @@ { | ||
"module:es2019": "../dist/es2019/types.js", | ||
"types": "../dist/cjs/types.d.ts" | ||
"types": "../dist/types/types.d.ts" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57749
5
819