@prezly/sdk 16.3.0 → 16.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/constants.cjs +1 -1
- package/dist/api/constants.js +1 -1
- package/dist/types/Story.d.ts +1 -1
- package/package.json +3 -2
package/dist/api/constants.cjs
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.DEFAULT_USER_AGENT = void 0;
|
|
7
|
-
const VERSION = "16.
|
|
7
|
+
const VERSION = "16.3.0";
|
|
8
8
|
const URL = 'https://github.com/prezly/javascript-sdk';
|
|
9
9
|
const DEFAULT_USER_AGENT = `prezly-javascript-sdk/${VERSION} (+${URL})`;
|
|
10
10
|
exports.DEFAULT_USER_AGENT = DEFAULT_USER_AGENT;
|
package/dist/api/constants.js
CHANGED
package/dist/types/Story.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prezly/sdk",
|
|
3
|
-
"version": "16.3.
|
|
3
|
+
"version": "16.3.1",
|
|
4
4
|
"description": "Prezly API SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -64,8 +64,9 @@
|
|
|
64
64
|
"start": "npm run build --incremental --watch",
|
|
65
65
|
"lint": "eslint ./src --ext=.ts",
|
|
66
66
|
"lint:fix": "npm run lint -- --fix",
|
|
67
|
-
"test": "npm run test:build && npm run test:unit",
|
|
67
|
+
"test": "npm run test:build && npm run test:ts && npm run test:unit",
|
|
68
68
|
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
69
|
+
"test:ts": "find src/ -name '*.test.ts' | xargs -I{} tsc --noEmit --strict {}",
|
|
69
70
|
"test:build": "node dist/index.js && tsc --noEmit dist/index.d.ts",
|
|
70
71
|
"snapshot": "jest --updateSnapshot",
|
|
71
72
|
"prettier:check": "prettier --check './src/**/*.{ts,js}'",
|