Skip to content

Commit 89ac5f7

Browse files
committedJun 7, 2018
built version works in MewCore
1 parent 9f0c9ad commit 89ac5f7

13 files changed

+12457
-13433
lines changed
 

‎.babelrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
{
3+
"presets": [
4+
"env"
5+
],
6+
"plugins": [
7+
"add-module-exports",
8+
"transform-object-rest-spread"
9+
]
10+
}

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ typings/
6161
/example/Initiator_Peer/mewConnect.js
6262
/example/Initiator_Peer/mewConnectUtils.js
6363
/example/Initiator_Peer/mewRTC.js
64+
/browser/package.json

‎.nycrc

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"description": "These are just examples for demonstration, nothing prescriptive",
3+
"nyc": {
4+
"check-coverage": true,
5+
"per-file": true,
6+
"lines": 99,
7+
"statements": 99,
8+
"functions": 99,
9+
"branches": 99,
10+
"include": [
11+
"src/**/*.js"
12+
],
13+
"exclude": [
14+
"src/**/*.spec.js"
15+
],
16+
"ignore-class-method": "methodToIgnore",
17+
"reporter": [
18+
"lcov",
19+
"text-summary"
20+
],
21+
"require": [
22+
"./test/helpers/some-helper.js"
23+
],
24+
"extension": [
25+
".jsx"
26+
],
27+
"cache": true,
28+
"all": true,
29+
"temp-directory": "./alternative-tmp",
30+
"report-dir": "./alternative"
31+
}
32+
}

0 commit comments

Comments
 (0)
Please sign in to comment.