Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k-anderson committed Jul 1, 2020
2 parents 9bb3eff + 143693e commit 60c9aff
Show file tree
Hide file tree
Showing 32 changed files with 6,483 additions and 1,766 deletions.
17 changes: 17 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
}
}
403 changes: 340 additions & 63 deletions README.md

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions assets/avatar--circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions assets/pause--circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions assets/phone-inbound.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions assets/video-slash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions assets/wifi-no-connection.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions configuration/development/webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
mode: "development",
entry: "./src/index.js",
output: {
filename: "libwebphone.js",
publicPath: "dist",
library: "libwebphone",
libraryTarget: "var",
},
performance: {
hints: "warning",
},
devtool: "inline-source-map",
devServer: {
inline: true,
liveReload: true,
},
};
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
module.exports = {
mode: "development",
mode: "production",
entry: "./src/index.js",
output: {
filename: "libwebphone.js",
publicPath: "dist",
library: "libwebphone",
libraryTarget: "var",
},
devtool: "source-map",
devServer: {
hot: true,
},
};
259 changes: 259 additions & 0 deletions docs/lwpAudioContext.md

Large diffs are not rendered by default.

Loading

0 comments on commit 60c9aff

Please sign in to comment.