Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SDK dependencies and webpack build #98

Merged
merged 6 commits into from
Apr 11, 2023
Merged
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
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules
demo/build
karma.conf.js
9 changes: 6 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"no-param-reassign": 0,
"func-names": 0,
"space-before-function-paren": [2, "never"],
"comma-dangle": [2, "never"],
"comma-dangle": 1,
"no-shadow": 0,
"guard-for-in": 0,
"no-restricted-syntax": [2, "WithStatement"],
Expand All @@ -27,7 +27,10 @@
"import/no-extraneous-dependencies": 0,
"import/newline-after-import": 0,
"no-mixed-operators": 0,
"quotes": ["error", "double"],
"arrow-parens": ["error", "as-needed"]
"quotes": ["warn", "double"],
esme marked this conversation as resolved.
Show resolved Hide resolved
"arrow-parens": ["error", "as-needed"],
"import/prefer-default-export": 0,
"arrow-body-style": 0,
"prefer-object-spread": 0
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ coverage
build
.DS_STORE
lib
dist-test
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.21.3
v18.15.0
3 changes: 1 addition & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
.eslintrc
node_modules
circle.yml
karma.conf.js
webpack.config.js
coverage
coverage
14 changes: 7 additions & 7 deletions demo/package-lock.json

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

2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@hubspot/calling-extensions-sdk": "^0.0.10"
"@hubspot/calling-extensions-sdk": "^0.0.13"
}
}
28 changes: 0 additions & 28 deletions karma.conf.js

This file was deleted.

Loading