@splitsoftware/splitio 10.21.1 → 10.21.2-rc.0
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.21.
|
|
1
|
+
export var packageVersion = '10.21.2-rc.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.21.
|
|
3
|
+
"version": "10.21.2-rc.0",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"node": ">=6"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@splitsoftware/splitio-commons": "1.6.
|
|
36
|
+
"@splitsoftware/splitio-commons": "1.6.2-rc.3",
|
|
37
37
|
"@types/google.analytics": "0.0.40",
|
|
38
38
|
"@types/ioredis": "^4.28.0",
|
|
39
39
|
"ioredis": "^4.28.0",
|
|
@@ -107,9 +107,7 @@
|
|
|
107
107
|
"test-node-offline": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/offline/node.spec.js | tap-min",
|
|
108
108
|
"test-node-redis": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/node_redis.spec.js | tap-min",
|
|
109
109
|
"test-node-push": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/push/node.spec.js | tap-min",
|
|
110
|
-
"
|
|
111
|
-
"test-ts-decls": "./scripts/ts-tests.sh",
|
|
112
|
-
"posttest-ts-decls": "npm unlink && npm install",
|
|
110
|
+
"test-ts-decls": "tsc --build ts-tests",
|
|
113
111
|
"test": "npm run test-node && npm run test-browser",
|
|
114
112
|
"publish:rc": "npm run check && npm run build && npm publish --tag canary",
|
|
115
113
|
"publish:stable": "npm run check && npm run build && npm publish"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.21.
|
|
1
|
+
export const packageVersion = '10.21.2-rc.0';
|
package/types/index.d.ts
CHANGED
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
// Project: http://www.split.io/
|
|
3
3
|
// Definitions by: Nico Zelaya <https://github.com/NicoZelaya/>
|
|
4
4
|
|
|
5
|
-
/// <reference
|
|
5
|
+
/// <reference types="./splitio" />
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
declare module JsSdk {
|
|
7
|
+
declare module '@splitsoftware/splitio' {
|
|
10
8
|
/**
|
|
11
9
|
* Split.io sdk factory function.
|
|
12
10
|
* The settings parameter should be an object that complies with the SplitIO.INodeAsyncSettings.
|