wolves-react-client 1.0.1 → 1.0.3
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/metadata.d.ts +1 -1
- package/dist/metadata.js +1 -1
- package/package.json +3 -2
package/dist/metadata.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* React SDK Metadata
|
|
3
3
|
* This file defines the SDK version and type for the Wolves React SDK
|
|
4
4
|
*/
|
|
5
|
-
export declare const REACT_SDK_VERSION = "1.0.
|
|
5
|
+
export declare const REACT_SDK_VERSION = "1.0.3";
|
|
6
6
|
export declare const REACT_SDK_TYPE = "wolves-react-client";
|
|
7
7
|
/**
|
|
8
8
|
* Get React SDK metadata to override the JS SDK metadata
|
package/dist/metadata.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.getReactSDKMetadata = exports.REACT_SDK_TYPE = exports.REACT_SDK_VERSION = void 0;
|
|
8
|
-
exports.REACT_SDK_VERSION = '1.0.
|
|
8
|
+
exports.REACT_SDK_VERSION = '1.0.3';
|
|
9
9
|
exports.REACT_SDK_TYPE = 'wolves-react-client';
|
|
10
10
|
/**
|
|
11
11
|
* Get React SDK metadata to override the JS SDK metadata
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wolves-react-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "React SDK for Wolves A/B Testing Platform",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"test": "jest",
|
|
21
21
|
"lint": "eslint src --ext .ts,.tsx",
|
|
22
22
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
23
|
-
"prepublishOnly": "npm run build"
|
|
23
|
+
"prepublishOnly": "node scripts/hide-readme.js && npm run build",
|
|
24
|
+
"postpublish": "node scripts/restore-readme.js"
|
|
24
25
|
},
|
|
25
26
|
"peerDependencies": {
|
|
26
27
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|