Skip to content

Commit 35c1109

Browse files
authored
Merge pull request #22 from sfeir-open-source/master
Push SFEIR work to talk control organization
2 parents fcbf81e + 0fc132e commit 35c1109

File tree

134 files changed

+49081
-18438
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+49081
-18438
lines changed

.babelrc

Lines changed: 0 additions & 18 deletions
This file was deleted.

.eslintrc

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
},
99
"plugins": [
1010
"mocha",
11-
"jsdoc"
11+
"jsdoc",
12+
"prettier"
1213
],
1314
"extends": [
1415
"eslint:recommended",
@@ -18,9 +19,11 @@
1819
],
1920
"globals": {
2021
},
22+
"parser": "babel-eslint",
2123
"parserOptions": {
2224
"sourceType": "module",
23-
"ecmaVersion": 2018
25+
"ecmaVersion": 2018,
26+
"allowImportExportEverywhere": true
2427
},
2528
"rules": {
2629
"no-console": "off",
@@ -41,6 +44,8 @@
4144
"semi": [
4245
"error",
4346
"always"
44-
]
47+
],
48+
"mocha/no-setup-in-describe": "off",
49+
"prettier/prettier": ["error"]
4550
}
4651
}

.github/ISSUE_TEMPLATE.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅
2+
3+
Oh hi there! 😄
4+
5+
To expedite issue processing please search open and closed issues before submitting a new one.
6+
Existing issues often contain information about workarounds, resolution, or progress updates.
7+
8+
🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅-->
9+
10+
11+
# 🐞 bug report
12+
13+
### Affected feature
14+
<!-- Can you pin-point one or more feature as the source of the bug? -->
15+
<!-- ✍️edit: --> The issue is caused by feature...
16+
17+
18+
### Is this a regression?
19+
20+
<!-- Did this behavior use to work in the previous version? -->
21+
<!-- ✍️--> Yes, the previous version in which this bug was not present was: ....
22+
23+
24+
### Description
25+
26+
<!-- ✍️--> A clear and concise description of the problem...
27+
28+
29+
## 🔬 Minimal Reproduction
30+
<!--
31+
Please create and share minimal reproduction of the issue.
32+
-->
33+
34+
## 🔥 Exception or Error
35+
<pre><code>
36+
<!-- If the issue is accompanied by an exception or an error, please share it below: -->
37+
<!-- ✍️-->
38+
39+
</code></pre>
40+
41+
42+
## 🌍 Your Environment
43+
44+
**TalkControl version:**
45+
<pre><code>
46+
<!-- ✍️-->
47+
48+
</code></pre>
49+
50+
**Anything else relevant?**
51+
<!-- ✍️Is this a browser specific issue? If so, please specify the browser and version. -->
52+
53+
<!-- ✍️Do any of these matter: operating system, IDE, package manager, HTTP server, ...? If so, please mention it below. -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
## PR Checklist
2+
Please check if your PR fulfills the following requirements:
3+
4+
<!-- Please check the one that applies to this PR using "x" -->
5+
6+
- [ ] The commit message follows our guidelines: https://github.com/talk-control/talk-control/blob/master/CONTRIBUTING.md#commit
7+
- [ ] Tests for the changes have been added (for bug fixes / features)
8+
- [ ] Comments have been added only for tricky sections of the code (for bug fixes / features)
9+
- [ ] Self review has been performed (for bug fixes / features)
10+
- [ ] New and existing unit tests pass locally with my changes
11+
12+
13+
## PR Type
14+
What kind of change does this PR introduce?
15+
16+
<!-- Please check the one that applies to this PR using "x" -->
17+
18+
- [ ] Bug fix (non-breaking change which fixes an issue)
19+
- [ ] New feature (non-breaking change which adds functionality)
20+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
21+
- [ ] This change requires a documentation update
22+
- [ ] Code style update (formatting, local variables)
23+
- [ ] Refactoring (no functional changes, no api changes)
24+
- [ ] Build related changes
25+
- [ ] CI related changes
26+
- [ ] Documentation content changes
27+
- [ ] Other... Please describe:
28+
29+
30+
## What is the current behavior?
31+
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue -->
32+
33+
Issue Number: N/A
34+
35+
36+
## What is the new behavior?
37+
38+
<!-- Please describe the new behavior -->
39+
40+
## Does this PR introduce a breaking change?
41+
42+
- [ ] Yes
43+
- [ ] No
44+
45+
<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below -->

.github/workflows/develop.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: develop
5+
6+
on:
7+
push:
8+
branches: [ develop ]
9+
pull_request:
10+
branches: [ develop ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
node-version: [10.x, 12.x, 14.x]
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Use Node.js ${{ matrix.node-version }}
24+
uses: actions/setup-node@v1
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
- run: npm ci
28+
- run: npm run build --if-present
29+
- run: npm test
30+
env:
31+
CI: true

.github/workflows/master.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: master
5+
6+
on:
7+
push:
8+
branches: [master]
9+
pull_request:
10+
branches: [master]
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
matrix:
18+
node-version: [12.x]
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm ci
27+
- run: npm run build --if-present
28+
- run: npm test
29+
env:
30+
CI: true

.github/workflows/push.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: push
2+
on:
3+
push:
4+
branches: [ develop ]
5+
jobs:
6+
report:
7+
name: Report webpack stats
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@master
11+
- name: Report webpack stats
12+
uses: packtracker/[email protected]
13+
env:
14+
PT_PROJECT_TOKEN: ${{ secrets.PT_PROJECT_TOKEN }}
15+
WEBPACK_CONFIG_PATH: ./webpack.config.prod.js

.github/workflows/v0.3.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: v0.3
5+
6+
on:
7+
push:
8+
branches: [v0.3]
9+
pull_request:
10+
branches: [v0.3]
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
matrix:
18+
node-version: [12.x]
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm ci
27+
- run: npm run build --if-present
28+
- run: npm test
29+
env:
30+
CI: true

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,14 @@ dist
5050
Thumbs.db
5151

5252
# Slide show example
53-
showcase/resources/slave/
53+
showcase/resources/tc-component/
5454

5555
# Parcel
5656
.cache
5757

5858
# Documentation
5959
docs-dist
60-
docs-sources/developers/code/parts/
60+
docs-sources/developers/code/parts/
61+
62+
# Jetbrains
63+
.idea

.huskyrc.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
const task = arr => arr.join(' && ');
2-
31
module.exports = {
42
hooks: {
5-
'pre-commit': task(['eslint .', 'pretty-quick --staged']),
6-
'commit-msg': 'commitlint -E HUSKY_GIT_PARAMS',
7-
'pre-push': 'npm test'
3+
"pre-commit": "npm run lint",
4+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
85
}
96
};

0 commit comments

Comments
 (0)