Skip to content

Commit 9ef6f21

Browse files
Vuln fixes and general polishing
1 parent aa4d2a0 commit 9ef6f21

6 files changed

Lines changed: 43 additions & 153 deletions

File tree

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# JS SDK
1+
# JavaScript SDK
22

33
## What did you accomplish?
44

55
## How do we test the changes introduced in this PR?
66

7-
## Extra Notes
7+
## Extra Notes

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
/.vscode
1010
dump.rdb
1111

12-
## local environment setup
13-
/startup.sh
14-
1512
## coverage info
1613
/karma/coverage
1714

package-lock.json

Lines changed: 39 additions & 144 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,8 @@
4848
},
4949
"devDependencies": {
5050
"@types/node-fetch": "^2.6.10",
51-
"@types/seedrandom": "^3.0.2",
5251
"copyfiles": "^2.4.1",
5352
"cross-env": "^7.0.3",
54-
"csv-streamify": "4.0.0",
5553
"eslint": "^8.48.0",
5654
"eslint-plugin-compat": "^4.2.0",
5755
"eslint-plugin-import": "^2.25.4",

types/client/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import '@splitsoftware/splitio-commons';
55

66
export = JsSdk;
77

8-
declare module JsSdk {
8+
declare namespace JsSdk {
99
/**
1010
* Split.io SDK factory function.
1111
* The settings parameter should be an object that complies with the SplitIO.IBrowserSettings.

types/server/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import '@splitsoftware/splitio-commons';
55

66
export = JsSdk;
77

8-
declare module JsSdk {
8+
declare namespace JsSdk {
99
/**
1010
* Split.io SDK factory function.
1111
* The settings parameter should be an object that complies with the SplitIO.INodeAsyncSettings.

0 commit comments

Comments
 (0)