Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# JS SDK
# JavaScript SDK

## What did you accomplish?

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

## Extra Notes
## Extra Notes
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
/.vscode
dump.rdb

## local environment setup
/startup.sh

## coverage info
/karma/coverage

Expand Down
183 changes: 39 additions & 144 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,8 @@
},
"devDependencies": {
"@types/node-fetch": "^2.6.10",
"@types/seedrandom": "^3.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"csv-streamify": "4.0.0",
"eslint": "^8.48.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.25.4",
Expand Down
2 changes: 1 addition & 1 deletion types/client/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import '@splitsoftware/splitio-commons';

export = JsSdk;

declare module JsSdk {
declare namespace JsSdk {
/**
* Split.io SDK factory function.
* The settings parameter should be an object that complies with the SplitIO.IBrowserSettings.
Expand Down
2 changes: 1 addition & 1 deletion types/server/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import '@splitsoftware/splitio-commons';

export = JsSdk;

declare module JsSdk {
declare namespace JsSdk {
/**
* Split.io SDK factory function.
* The settings parameter should be an object that complies with the SplitIO.INodeAsyncSettings.
Expand Down
Loading