Skip to content

Commit

Permalink
built version works in MewCore
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMieskoski committed Jun 7, 2018
1 parent 9f0c9ad commit 89ac5f7
Show file tree
Hide file tree
Showing 13 changed files with 12,457 additions and 13,433 deletions.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

{
"presets": [
"env"
],
"plugins": [
"add-module-exports",
"transform-object-rest-spread"
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ typings/
/example/Initiator_Peer/mewConnect.js
/example/Initiator_Peer/mewConnectUtils.js
/example/Initiator_Peer/mewRTC.js
/browser/package.json
32 changes: 32 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"description": "These are just examples for demonstration, nothing prescriptive",
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"ignore-class-method": "methodToIgnore",
"reporter": [
"lcov",
"text-summary"
],
"require": [
"./test/helpers/some-helper.js"
],
"extension": [
".jsx"
],
"cache": true,
"all": true,
"temp-directory": "./alternative-tmp",
"report-dir": "./alternative"
}
}
Loading

0 comments on commit 89ac5f7

Please sign in to comment.